/* FONTS */

@font-face {
  font-family: 'dongle';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/_font/dongle.woff2") format("woff2");
}
@font-face {
  font-family: 'jakarta';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/_fonts/jakarta.woff2') format('woff2');
}
@font-face {
  font-family: 'tiltwarp';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/_fonts/tiltwarp.woff2') format('woff2');
}

/* ROOT / DESIGN SYSTEM */

:root {
  --bg: #080A0F;
  --surface: #12161D;
  --surface-dark: #0D1016;
  --text: #F7F8FB;
  --muted: rgba(255,255,255,.58);
  --line: rgba(255,255,255,.08);

  /* ruhige Basisfarben: bewusst nicht gelb */
  --accent: #E6EAF0;
  --accent-soft: rgba(255,255,255,.06);
  --danger: #FF5F5F;
  --danger-soft: rgba(255,95,95,.08);

  /* Farbakzente bleiben für Hero, Tools und Bottom Nav */
  --blue: #2F8CFF;
  --green: #73D24F;
  --purple: #B968FF;
  --orange: #FF812F;
  --gold: #F4DC2E;
  --mint: #37BC9B;

  --r: 6px;
  --nav-h: 56px;
  --bottom-h: 84px;

  --gap: .3rem;
  --space: .65rem;

  --fs-s: .72rem;
  --fs-m: .9rem;
  --fs-l: 1.45rem;

  --icon-box: 32px;
  --icon-size: 18px;

  --tile-weather: clamp(145px, 42vw, 165px);
  --tile-notes: minmax(260px, 78vw);
  --tile-tools: minmax(190px, 58vw);
  --tile-today: minmax(220px, 68vw);
}

/* RESET / BASICS */

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "jakarta", sans-serif;
  letter-spacing: .05rem;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "jakarta", sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-lock {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hide {
display:none!important;
}

/* GLOBAL LAYOUT */

.container {
  width: min(95%, 640px);
  margin: 0 auto;
}

.main-content {
  padding-bottom: calc(var(--bottom-h) + var(--space) * 4);
}

.section {
  margin-top: calc(var(--space) * 2);
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.section-head,
.row,
.actions,
.hero-top,
.menu-head,
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  min-width: 0;
}

.section-head {
  margin-bottom: var(--space);
}

.heading {
  margin: 0;
  line-height: 1.2;
}

.section-title {
  display: flex;
  align-items: center;
  gap: var(--gap);
  color: var(--accent);
  font-family: "jakarta", sans-serif;
  font-size: var(--fs-s);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

/* GLOBAL CARD / ICON / TEXT */

/* Gemeinsame Karten-Basis: bewusst HTML-sicher zusammengezogen */
.stat,
.note,
.tool,
.info-card,
.tip {
  padding: var(--space);
}

.note,
.tool,
.info-card {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  scroll-snap-align: start;
}

.weather-cards,
.notes,
.tools,
.today-cards,
.app-cards {
  gap: var(--gap);
}

.tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
  background: linear-gradient(180deg, var(--surface), var(--surface-dark));
}

.icon,
.icon-btn,
.close {
  width: var(--icon-box);
  height: var(--icon-box);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--text);
  background: rgba(255,255,255,.025);
}

.icon i,
.icon svg,
.icon-btn i,
.icon-btn svg,
.close i,
.close svg,
.menu-nav i,
.menu-nav svg,
.heading i,
.heading svg,
.eyebrow i,
.eyebrow svg,
.note .delete i,
.note .delete svg {
  width: var(--icon-size);
  height: var(--icon-size);
  display: block;
  stroke-width: 1.9;
}

.icon-btn {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
}

.icon-btn.is-loading svg {
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.value {
  min-width: 0;
  overflow: hidden;
  font-size: var(--fs-m);
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.label {
  color: var(--muted);
  font-size: var(--fs-s);
  line-height: 1.25;
}

.title {
  font-size: var(--fs-m);
  line-height: 1.24;
}

.text {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.meta {
  margin-top: auto;
  color: rgba(255,255,255,.48);
  font-size: var(--fs-s);
}

/* WEATHER MOOD BACKGROUND */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -10%, var(--mood-glow-top, transparent), transparent 42%),
    radial-gradient(circle at 92% 20%, var(--mood-glow-side, transparent), transparent 34%),
    linear-gradient(180deg, var(--mood-bg-top, var(--bg)), var(--bg) 58%, var(--bg));
  opacity: .9;
}

body.mood-sun {
  --mood-glow-top: rgba(244,220,46,.11);
  --mood-glow-side: rgba(255,129,47,.055);
  --mood-bg-top: #0B0B0D;
}

body.mood-clouds {
  --mood-glow-top: rgba(230,234,240,.055);
  --mood-glow-side: rgba(47,140,255,.035);
  --mood-bg-top: #080B11;
}

body.mood-rain {
  --mood-glow-top: rgba(47,140,255,.09);
  --mood-glow-side: rgba(55,188,155,.04);
  --mood-bg-top: #050911;
}

body.mood-wind {
  --mood-glow-top: rgba(185,104,255,.07);
  --mood-glow-side: rgba(47,140,255,.045);
  --mood-bg-top: #080912;
}

body.mood-bluehour {
  --mood-glow-top: rgba(47,140,255,.13);
  --mood-glow-side: rgba(185,104,255,.075);
  --mood-bg-top: #060713;
}

body.mood-night {
  --mood-glow-top: rgba(120,145,190,.055);
  --mood-glow-side: rgba(47,140,255,.045);
  --mood-bg-top: #04060C;
}

/* SUN READABILITY MODE */

body.sun-readable {
  --muted: rgba(255,255,255,.76);
  --line: rgba(255,255,255,.16);
  --surface: #151A22;
  --surface-dark: #10141B;
}

body.sun-readable::before {
  opacity: .38;
}

body.sun-readable .tile {
  border-color: rgba(255,255,255,.16);
  background: linear-gradient(180deg, #151A22, #10141B);
}

body.sun-readable .text,
body.sun-readable .label,
body.sun-readable .meta,
body.sun-readable .status-line {
  color: rgba(255,255,255,.76);
}

body.sun-readable .value,
body.sun-readable .title,
body.sun-readable .info-value {
  color: #FFFFFF;
}

body.sun-readable .topbar,
body.sun-readable .bottom-nav {
  backdrop-filter: none;
}

body.sun-readable .topbar {
  background: rgba(8,10,15,.98);
}

body.sun-readable .bottom-nav {
  background: linear-gradient(180deg, rgba(8,10,15,0), rgba(8,10,15,.96) 24%, rgba(8,10,15,1));
}

body.sun-readable .icon,
body.sun-readable .icon-btn,
body.sun-readable .close {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
}

body.sun-readable .mini-btn {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
}

/* HEADER / TOPBAR */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,.04);
  backdrop-filter: blur(1rem);
  background: linear-gradient(180deg, rgba(8,10,15,.96), rgba(8,10,15,.78));
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  color: rgba(255,255,255,.96);
  font-family: 'dongle', sans-serif;
  font-size: 2.1rem;
  margin-top: var(--space);
}

.brand-logo .logo-kit {
  color: var(--mint);
  font-family: 'dongle', sans-serif;
}

.topbar [data-menu-open] {
  border-color: rgba(115,210,79,.34);
  color: var(--green);
  background: rgba(115,210,79,.07);
}

.topbar [data-menu-open]:hover {
  border-color: rgba(115,210,79,.55);
  background: rgba(115,210,79,.11);
}

/* WEATHER CHECK */

.weather-focus {
  margin-top: calc(.3rem * 2);
}

.weather-stack {
  margin-top: calc(.3rem * 2);
  display: grid;
  gap: var(--gap);
}

.stat {
  padding: var(--space);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--gap);
}

.stat .row {
  justify-content: space-between;
}

.stat .value {
  flex: 1;
}

.stat .icon,
.wide .icon {
  border-color: rgba(255,255,255,.04);
  color: rgba(255,255,255,.94);
}

/* HERO SLIDER / LIGHT + MOON */

.hero-slider {
  margin-top: calc(var(--space) * -1);
  overflow: hidden;
}

.hero-track {
  display: flex;
  transition: transform .28s ease;
  will-change: transform;
}

.hero {
  min-width: 100%;
  padding: var(--space);
  display: flex;
  isolation: isolate;
  background: var(--bg);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.05) brightness(.82);
  transform: scale(1.02);
}

.hero::after,
.hero-moon::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,8,12,.18), rgba(6,8,12,.42) 42%, rgba(6,8,12,.92)),
    linear-gradient(90deg, rgba(6,8,12,.18), transparent 45%, rgba(6,8,12,.18));
}

.hero-moon .hero-bg-img {
  filter: saturate(.72) contrast(1.08) brightness(.5);
}

.hero-moon::after {
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.11), transparent 22%),
    linear-gradient(180deg, rgba(6,8,12,.38), rgba(6,8,12,.62) 42%, rgba(6,8,12,.94)),
    linear-gradient(90deg, rgba(6,8,12,.32), transparent 45%, rgba(6,8,12,.26));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-heading {
  margin-bottom: var(--space);
  display: flex;
  align-items: center;
  gap: var(--gap);
  color: var(--gold);
  font-family: "tiltwarp", sans-serif;
  font-size: var(--fs-l);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
opacity: .72;
}

.hero-heading.blue {
  margin-top: var(--space);
  color: var(--blue);
}

.hero-heading.moon {
  color: var(--text);
  opacity: .82;
}

.hero-spacer {
  height: calc(2rem * 1.5);
  flex: 0 0 auto;
}

.time-pair {
  display: flex;
  margin-top: var(--space);
}

.moon-extra {
  margin-top: calc(var(--space) * 1.15);
}

.time-box {
  flex: 1;
  min-width: 0;
}

.time-box + .time-box {
  margin-left: var(--space);
  padding-left: var(--space);
  border-left: 1px solid rgba(255,255,255,.14);
}

.tiny-label {
  margin-bottom: var(--space);
  color: rgba(255,255,255,.72);
  font-size: var(--fs-s);
  line-height: 1;
  text-transform: uppercase;
}

.time-value {
  font-size: var(--fs-m);
  line-height: 1.1;
  white-space: nowrap;
}

.moon-tip {
  margin: var(--gap) 0 0;
  max-width: 42ch;
  color: #E6EAF0;
  font-size: var(--fs-m);
  line-height: 1.45;
}

.mission-focus {
  margin: var(--gap) 0 0;
  color: rgba(255,255,255,.68);
  font-size: var(--fs-s);
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: var(--gap);
  padding: .5rem 0 .3rem;
}

.hero-dot {
  appearance: none;
  -webkit-appearance: none;
  width: .65rem;
  height: .65rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--text);
}

/* WALK TIP */

.tip {
  padding: var(--space);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: var(--gap);
}

.tip .icon {
  grid-column: 1;
  grid-row: 1;
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.tip .copy {
  display: contents;
}

.kicker,
.hero-chips {
  display: none;
}

.weather-note-inline {
  display: block;
  margin: calc(var(--space) * -.5) 0 var(--space);
  color: var(--muted);
  text-align: center;
}

.tip .title {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  min-height: var(--icon-box);
  color: var(--text);
  font-size: var(--fs-m);
}

.tip #weatherMissionTitle {
  grid-column: 1 / -1;
  font-size: var(--fs-m);
  font-weight: 500;
}

.tip .text {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: none;
  color: var(--muted);
  font-size: var(--fs-s);
  line-height: 1.45;
}

.tip .mission-focus {
  grid-column: 1 / -1;
  margin: 0;
}

.tip .mission-duration {
  grid-column: 1 / -1;
  margin-top: calc(var(--space) * -.35);
}

/* SCROLL ROWS */

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  gap: var(--gap);
  overflow-x: auto;
  padding-bottom: var(--space);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

.weather-cards {
  grid-auto-columns: var(--tile-weather);
  gap: var(--gap);
}

.notes {
  grid-auto-columns: var(--tile-notes);
  gap: var(--gap);
}

.tools {
  grid-auto-columns: var(--tile-tools);
  gap: var(--gap);
}

/* NOTES */

.note {
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  border: 1px solid rgba(255,255,255,.12);
  scroll-snap-align: start;
}

.note .text {
  font-size: var(--fs-s);
}

.note .delete {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,95,95,.16);
  border-radius: var(--r);
  color: var(--danger);
  background: var(--danger-soft);
  cursor: pointer;
  line-height: 1;
}

.note .delete:hover {
  border-color: rgba(255,95,95,.28);
  background: var(--danger-soft);
}

.note .delete i {
  pointer-events: none;
}

/* NOTE MODAL */

.note-form {
  display: grid;
  gap: var(--gap);
}

.note-label {
  color: var(--accent);
  font-size: var(--fs-s);
  text-transform: uppercase;
}

.note-input {
  width: 100%;
  min-height: 118px;
  resize: vertical;
  padding: var(--space);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--text);
  background: rgba(255,255,255,.035);
  outline: none;
  line-height: 1.45;
}

.note-input:focus {
  border-color: rgba(55,188,155,.48);
  box-shadow: 0 0 0 3px rgba(55,188,155,.08);
}

.note-input::placeholder {
  color: rgba(255,255,255,.34);
}

.note-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin-top: var(--gap);
}

.note-save {
  border-color: rgba(55,188,155,.36);
  color: var(--mint);
  background: rgba(55,188,155,.08);
}

.note-save:hover {
  border-color: rgba(55,188,155,.58);
  background: rgba(55,188,155,.12);
}

.dialog-copy {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-m);
  line-height: 1.48;
}

.dialog-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin-top: var(--space);
}

.dialog-confirm {
  border-color: rgba(55,188,155,.36);
  color: var(--mint);
  background: rgba(55,188,155,.08);
}

.dialog-confirm:hover {
  border-color: rgba(55,188,155,.58);
  background: rgba(55,188,155,.12);
}

.dialog-confirm.danger {
  border-color: rgba(255,95,95,.2);
  color: var(--danger);
  background: var(--danger-soft);
}

.dialog-confirm.danger:hover {
  border-color: rgba(255,95,95,.34);
  background: rgba(255,95,95,.12);
}

/* CATEGORY SECTIONS / TOOL CARDS */

.accent {
  width: 16px;
  height: 4px;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
border-radius:999px;
}

.explore {
  --cat: var(--blue);
  color: var(--blue);
}

.play {
  --cat: var(--green);
  color: var(--green);
}

.create {
  --cat: var(--purple);
  color: var(--purple);
}

.calculate {
  --cat: var(--orange);
  color: var(--orange);
}

.film {
  --cat: var(--gold);
  color: var(--gold);
}

.category-section .section-title,
.category-section .accent {
  color: var(--cat);
}

.tool {
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  color: var(--text);
  scroll-snap-align: start;
  transition: transform .18s ease, border-color .18s ease;
}

.tool:hover {
  border-color: rgba(255,255,255,.18);
}

.tool .title {
  font-size: var(--fs-m);
  font-weight: 500;
}

.tool .text {
  font-size: var(--fs-s);
}

.tool .meta {
  text-transform: uppercase;
}

/* BOTTOM NAV */

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: var(--space) 0 calc(var(--space) + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,.045);
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(8,10,15,0), rgba(8,10,15,.88) 30%, rgba(8,10,15,.98));
}

.bottom-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--gap);
}

.bottom-item {
  padding: var(--space);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  border: 1px solid currentColor;
  border-radius: 6px;
  opacity: .92;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
}

.bottom-item .icon {
  border-radius: 6px;
  color: currentColor;
}

.bottom-item.explore {
  color: #2F8CFF;
}

.bottom-item.play {
  color: #73D24F;
}

.bottom-item.create {
  color: #B968FF;
}

.bottom-item.calculate {
  color: #FF812F;
}

.bottom-item.film {
  color: #F4DC2E;
}

.nav-label {
  font-size: var(--fs-s);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

/* MENU MODAL */

.menu-modal,
.text-modal,
.note-modal,
.dialog-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.menu-modal.is-open,
.text-modal.is-open,
.note-modal.is-open,
.dialog-modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.76);
  backdrop-filter: blur(10px);
}

.menu-panel,
.modal-panel {
  position: absolute;
  width: min(420px, calc(100% - 28px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(180deg, var(--surface), var(--bg));
}

.menu-panel {
  inset: var(--space) var(--space) var(--space) auto;
}

.menu-head,
.modal-head {
  padding: var(--space);
  border-bottom: 1px solid var(--line);
}

.menu-title,
.modal-title {
  color: var(--accent);
  font-size: var(--fs-s);
  text-transform: uppercase;
}

.close {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  line-height: 1;
  cursor: pointer;
}

.menu-nav,
.menu-links {
  display: grid;
  gap: var(--gap);
  padding: var(--space);
}

.menu-nav a {
  padding: var(--space);
  display: flex;
  align-items: center;
  gap: var(--space);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.035);
  text-transform: uppercase;
}

.menu-links {
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.menu-links a,
.menu-links button {
  padding: var(--space) 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.menu-links button[data-modal] {
  color: var(--mint);
}

.menu-links button[data-modal]:hover {
  color: var(--text);
}

/* TEXT MODAL */

.modal-panel {
  inset: auto var(--space) var(--space);
  width: min(620px, calc(100% - 28px));
  max-height: min(76vh, 680px);
  margin-inline: auto;
}

.modal-body {
  padding: var(--space);
  overflow-y: auto;
  color: var(--text);
  line-height: 1.62;
}

.modal-body h3 {
  margin: var(--space);
  color: var(--text);
  text-transform: uppercase;
}

.modal-body p {
  margin: 0 0 var(--space);
}

/* BOTTOM SHEET MODALS */

.text-modal,
.note-modal,
.dialog-modal {
  align-items: flex-end;
}

.text-modal.is-open,
.note-modal.is-open,
.dialog-modal.is-open {
  display: flex;
}

.text-modal .modal-backdrop,
.note-modal .modal-backdrop,
.dialog-modal .modal-backdrop {
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
}

.text-modal .modal-panel,
.note-modal .modal-panel,
.dialog-modal .modal-panel {
  position: relative;
  inset: auto;
  width: min(620px, 100%);
  max-height: min(78vh, 720px);
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-bottom: 0;
  border-radius: calc(var(--r) * 3) calc(var(--r) * 3) 0 0;
  background: linear-gradient(180deg, var(--surface), var(--bg));
  box-shadow: 0 -18px 42px rgba(0,0,0,.45);
  transform: translateY(100%);
  transition: transform .26s cubic-bezier(.16,1,.3,1);
}

.text-modal.is-open .modal-panel,
.note-modal.is-open .modal-panel,
.dialog-modal.is-open .modal-panel {
  transform: translateY(0);
}

.modal-head {
  position: relative;
  padding-top: calc(var(--space) * 1.25);
}

.modal-head::before {
  content: "";
  position: absolute;
  top: .42rem;
  left: 50%;
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  transform: translateX(-50%);
}

@media (min-width: 680px) {
  .text-modal .modal-panel,
  .note-modal .modal-panel,
  .dialog-modal .modal-panel {
    width: min(620px, calc(100% - 28px));
    margin-bottom: var(--space);
    border-bottom: 1px solid var(--line);
    border-radius: calc(var(--r) * 3);
  }
}

/* TODAY / WALK LOG */

.today-cards {
  grid-auto-columns: var(--tile-today);
  gap: var(--gap);
}

.info-card {
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  scroll-snap-align: start;
}

.info-value {
  font-size: var(--fs-l);
  line-height: 1;
}

.info-card .text {
  color: var(--muted);
  font-size: var(--fs-s);
}

.mission-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: var(--gap);
  margin-top: var(--gap);
}

.mini-btn {
  appearance: none;
  -webkit-appearance: none;
  padding: var(--space);
  flex: 1;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--text);
  background: rgba(255,255,255,.035);
  cursor: pointer;
  font-size: var(--fs-s);
  text-transform: uppercase;
}

.mini-btn:hover {
  border-color: rgba(255,255,255,.18);
}

.timer-presets,
.timer-controls {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}

.timer-presets {
  margin-top: var(--gap);
}

.timer-controls {
  margin-top: auto;
}

.timer-presets .mini-btn,
.timer-controls .mini-btn {
  flex: 1 1 auto;
  min-width: 44px;
}

.timer-presets .mini-btn.active {
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
}

.timer-card .info-value {
  font-variant-numeric: tabular-nums;
}

.timer-full {
  scroll-snap-align: initial;
}

/* TODAY TYPO FIX */

.today-cards .info-card .title {
  font-size: var(--fs-m);
  line-height: 1.24;
}

.today-cards .info-card .value,
.today-cards .info-card .info-value,
.today-cards .film-match-card .value,
.today-cards .film-match-card .info-value {
  font-size: var(--fs-l);
  line-height: 1;
  white-space: normal;
}

.today-cards .info-card .text {
  font-size: var(--fs-s);
  line-height: 1.38;
}

/* TODAY DETAIL BUTTONS */

.today-details-btn {
  min-height: 0;
  width: fit-content;
  flex: 0 0 auto;
  padding: .42rem .55rem;
  margin-top: auto;
  color: var(--muted);
  border-color: var(--line);
  background: rgba(255,255,255,.025);
  font-size: .66rem;
}

.today-details-btn:hover {
  color: var(--text);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
}

.today-detail-modal {
  display: grid;
  gap: var(--space);
}

.today-detail-block {
  display: grid;
  gap: calc(var(--gap) * .8);
}

.today-detail-block h3 {
  margin: 0;
  color: var(--accent);
  font-size: var(--fs-s);
  line-height: 1.15;
  text-transform: uppercase;
}

.today-detail-block p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-m);
  line-height: 1.48;
}

.today-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}

.today-detail-tags span {
  padding: .36rem .48rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--muted);
  background: rgba(255,255,255,.03);
  font-size: var(--fs-s);
  line-height: 1;
  text-transform: uppercase;
}

/* FILM MATCH */

.film-match-card .mini-btn {
  min-height: 0;
  width: fit-content;
  flex: 0 0 auto;
  padding: .42rem .55rem;
  margin-top: auto;
  color: var(--muted);
  border-color: var(--line);
  background: rgba(255,255,255,.025);
  font-size: .66rem;
}

.film-match-card .mini-btn:hover {
  color: var(--text);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
}

.film-match-modal {
  display: grid;
  gap: var(--space);
}

.film-match-block {
  display: grid;
  gap: calc(var(--gap) * .8);
}

.film-match-block h3 {
  margin: 0;
  color: var(--accent);
  font-size: var(--fs-s);
  line-height: 1.15;
  text-transform: uppercase;
}

.film-match-block p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-m);
  line-height: 1.48;
}

.film-match-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}

.film-match-tags span {
  padding: .36rem .48rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--muted);
  background: rgba(255,255,255,.03);
  font-size: var(--fs-s);
  line-height: 1;
  text-transform: uppercase;
}

/* MINI GUIDE */

.field-notes {
  grid-auto-columns: minmax(230px, 72vw);
}

.field-note-card {
  min-height: 150px;
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  color: var(--text);
  scroll-snap-align: start;
}

.field-note-card .text {
  font-size: var(--fs-s);
  line-height: 1.42;
}

.field-note-card .meta {
  margin-top: 0;
  text-transform: uppercase;
}

.field-note-card .mini-btn {
  min-height: 0;
  width: fit-content;
  flex: 0 0 auto;
  padding: .42rem .55rem;
  margin-top: auto;
  color: var(--muted);
  border-color: var(--line);
  background: rgba(255,255,255,.025);
  font-size: .66rem;
}

.field-note-card .mini-btn:hover {
  color: var(--text);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
}

.field-note-modal-text {
  margin: 0 0 var(--space);
  color: var(--muted);
  font-size: var(--fs-m);
  line-height: 1.55;
}

.walk-log-empty {
  color: var(--muted);
}

.walk-log-card {
  min-height: 120px;
}

/* ICON REDUCTION */

.today-cards .info-card .row,
.field-note-card .row {
  min-height: auto;
}

.today-cards .info-card .title,
.field-note-card .title {
  color: var(--text);
}

.field-note-card {
  border-color: rgba(255,255,255,.075);
}

/* APP / OFFLINE / SETTINGS */

.app-cards {
  grid-auto-columns: var(--tile-today);
  gap: var(--gap);
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  margin-top: auto;
}

.app-actions .mini-btn {
  flex: 1 1 auto;
}

.data-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.icon-only {
  min-width: 0;
  display: grid;
  place-items: center;
  padding: var(--space);
}

.icon-only i,
.icon-only svg {
  width: var(--icon-size);
  height: var(--icon-size);
  display: block;
  stroke-width: 1.9;
}

.icon-only.danger {
  color: var(--danger);
  border-color: rgba(255,95,95,.18);
  background: var(--danger-soft);
}

.status-line {
  color: var(--muted);
  font-size: var(--fs-s);
  line-height: 1.35;
}

.status-value {
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
}

.status-value::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
  opacity: .9;
}

.mini-btn:disabled {
  opacity: .45;
  cursor: default;
}

body.compact .section {
  margin-top: var(--space);
}

body.compact .text,
body.compact .mission-focus,
body.compact .meta,
body.compact .status-line {
  display: none;
}

body.compact .info-card,
body.compact .note,
body.compact .tool,
body.compact .stat,
body.compact .tip {
  gap: var(--gap);
}

body.compact .hero-spacer {
  height: 1.2rem;
}

/* FINAL CSS LAYER */

:root {
  --gap: .42rem;
  --space: .74rem;
  --tile-weather: clamp(126px, 36vw, 148px);
  --tile-today: minmax(212px, 64vw);
  --tile-notes: minmax(250px, 74vw);
  --tile-tools: minmax(184px, 56vw);
}

.container {
  width: min(94%, 640px);
}

.main-content {
  padding-bottom: calc(var(--bottom-h) + 2.35rem);
}

.section {
  margin-top: .95rem;
}

.section + .section {
  margin-top: 1.05rem;
}

.section-head {
  margin-bottom: .45rem;
}

.scroll-row,
.weather-cards,
.today-cards,
.field-notes,
.notes,
.tools,
.app-cards {
  gap: var(--gap);
}

.scroll-row {
  padding-bottom: .42rem;
  scroll-padding-inline: 3%;
}

.tile {
  border-color: rgba(255,255,255,.075);
}

.stat,
.info-card,
.note,
.tool,
.field-note-card,
.tip {
  padding: var(--space);
}

/* Wetter */

.weather-focus {
  margin-top: .55rem;
}

.weather-stack {
  gap: .56rem;
}

.weather-cards {
  grid-auto-columns: var(--tile-weather);
}

.weather-note-inline {
  margin: -.18rem 0 .42rem;
}

.stat {
  min-height: 92px;
}

.stat .value {
  font-size: .82rem;
}

.stat .label {
  line-height: 1.18;
}

#refreshWeatherBtn.is-loading {
  border-color: rgba(55,188,155,.42);
  color: var(--mint);
  background: rgba(55,188,155,.08);
}

/* Hero */

.hero-slider {
  margin-top: 0;
  margin-bottom: .1rem;
}

.hero {
  min-height: 312px;
}

.hero-heading {
  font-size: clamp(1.16rem, 7vw, 1.45rem);
}

.hero-dots {
  padding: .38rem 0 .05rem;
}

.hero-dot {
  width: .46rem;
  height: .46rem;
}

.hero-moon .hero-bg-img {
  filter: saturate(.9) contrast(1.05) brightness(.82);
}

.hero-moon::after {
  background:
    linear-gradient(180deg, rgba(6,8,12,.18), rgba(6,8,12,.42) 42%, rgba(6,8,12,.92)),
    linear-gradient(90deg, rgba(6,8,12,.18), transparent 45%, rgba(6,8,12,.18));
}

/* Heute draußen */

.today-cards,
.app-cards {
  grid-auto-columns: var(--tile-today);
}

.today-cards .info-card {
  min-height: 164px;
}

.today-cards .info-card .row {
  justify-content: space-between;
  align-items: flex-start;
}

.today-cards .info-card .title {
  max-width: 100%;
  color: rgba(255,255,255,.96);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .075rem;
  text-transform: uppercase;
}

#walkScoreValue,
#lightAlertValue,
#colorHuntValue,
#filmMatchValue {
  min-height: auto;
  display: block;
  margin: .08rem 0;
  color: rgba(255,255,255,.88);
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: .025rem;
  white-space: normal;
}

.today-cards .info-card .text {
  min-height: 2.45em;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.36;
}

/* Kleine Aktionsbuttons */

.today-details-btn,
.field-note-card .mini-btn,
.film-match-card .mini-btn {
  align-self: flex-start;
  min-height: 0;
  width: fit-content;
  flex: 0 0 auto;
  padding: .42rem .55rem;
  margin-top: auto;
  color: var(--muted);
  border-color: var(--line);
  background: rgba(255,255,255,.025);
  font-size: .66rem;
}

.today-details-btn:hover,
.field-note-card .mini-btn:hover,
.film-match-card .mini-btn:hover {
  color: var(--text);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
}

/* Foto-Timer */

.timer-full {
  min-height: 154px;
}

.timer-head {
  align-items: flex-start;
}

.timer-head .info-value {
  flex: 1;
  min-width: 0;
}

.timer-card .info-value,
.timer-card .text {
  padding-right: 0;
}

.timer-presets .mini-btn,
.timer-controls .mini-btn {
  min-height: 36px;
  padding: .54rem .5rem;
}

/* Field Guide */

.field-notes {
  grid-auto-columns: minmax(245px, 76vw);
}

.field-note-card {
  min-height: 152px;
}

.field-note-card .row {
  justify-content: space-between;
  align-items: flex-start;
}

.field-note-card .title {
  max-width: 100%;
}

.field-note-card .meta {
  display: block;
  color: rgba(255,255,255,.46);
}

.field-note-card .text {
  min-height: 3.15em;
  font-size: var(--fs-s);
  line-height: 1.36;
}

/* Notizen und Ideen */

.note .meta {
  min-height: 1.25em;
}

.note .meta.is-placeholder {
  visibility: hidden;
}

.note .text {
  display: -webkit-box;
  min-height: 3.9em;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.note.is-idea .row {
  justify-content: space-between;
}

.note-spacer {
  visibility: hidden;
  pointer-events: none;
}

.note-counter {
  margin: -.2rem 0 0;
  color: var(--muted);
  font-size: var(--fs-s);
  line-height: 1;
  text-align: right;
}

/* Tools / App */

.tool {
  min-height: 126px;
}

.tool .row {
  align-items: flex-start;
}

.app-cards .info-card {
  min-height: 150px;
}

.data-actions {
  gap: var(--gap);
}

/* Bottom Nav */

.bottom-nav {
  padding-top: .5rem;
}

.bottom-item {
  padding: .5rem .34rem;
  gap: .3rem;
}

.bottom-item .icon {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.bottom-item .icon i,
.bottom-item .icon svg {
  width: 20px;
  height: 20px;
}

.nav-label {
  font-size: .66rem;
}

/* Menü / Heading Icons / Modals */

.modal-body {
  padding: .82rem var(--space) var(--space);
}

.menu-links a,
.menu-links button,
.menu-links button[data-modal] {
  color: var(--muted);
}

.menu-links a:hover,
.menu-links button:hover,
.menu-links button[data-modal]:hover {
  color: var(--text);
}

.topbar [data-menu-open] {
  border-color: rgba(55,188,155,.34);
  color: var(--mint);
  background: rgba(55,188,155,.07);
}

.topbar [data-menu-open]:hover {
  border-color: rgba(55,188,155,.55);
  background: rgba(55,188,155,.11);
}

.menu-nav a.explore { color: var(--blue); }
.menu-nav a.play { color: var(--green); }
.menu-nav a.create { color: var(--purple); }
.menu-nav a.calculate { color: var(--orange); }
.menu-nav a.film { color: var(--gold); }

.menu-nav a:hover {
  color: var(--text);
}

.section-head > .actions > .icon {
  color: rgba(255,255,255,.32);
  opacity: 1;
  border-color: rgba(255,255,255,.055);
  background: rgba(255,255,255,.012);
}

.section-head > .actions > .icon i,
.section-head > .actions > .icon svg {
  color: inherit;
}

.text-modal .modal-panel,
.note-modal .modal-panel,
.dialog-modal .modal-panel {
  width: min(420px, calc(100% - 28px));
  max-height: min(84vh, 760px);
  border-radius: var(--r);
}

.text-modal .modal-panel {
  min-height: min(58vh, 520px);
}

.text-modal .modal-body {
  padding: var(--space);
  line-height: 1.68;
}

.text-modal .modal-body p,
.note-modal .modal-body p,
.dialog-modal .modal-body p,
.field-note-modal-text,
.today-detail-block p,
.film-match-block p,
.dialog-copy {
  font-size: .9rem;
  line-height: 1.62;
}

/* Responsive */

@media (min-width: 560px) {
  :root {
    --tile-today: minmax(205px, 31%);
    --tile-notes: minmax(250px, 40%);
    --tile-tools: minmax(190px, 30%);
  }

  .hero {
    min-height: 330px;
  }

  .field-notes {
    grid-auto-columns: minmax(225px, 32%);
  }

  .app-cards {
    grid-auto-columns: minmax(210px, 32%);
  }
}

@media (min-width: 680px) {
  .text-modal .modal-panel,
  .note-modal .modal-panel,
  .dialog-modal .modal-panel {
    width: min(420px, calc(100% - 28px));
    border-radius: var(--r);
  }
}

@media (max-width: 559px) {
  .section {
    margin-top: .9rem;
  }

  .section + .section {
    margin-top: .95rem;
  }

  .text-modal .modal-panel,
  .note-modal .modal-panel,
  .dialog-modal .modal-panel {
    width: calc(100% - 28px);
    max-height: 84vh;
    margin-bottom: var(--space);
    border: 1px solid var(--line);
    border-radius: var(--r);
  }
}

body.compact .today-cards .info-card,
body.compact .field-note-card,
body.compact .tool,
body.compact .note {
  min-height: auto;
}


/* IMPRESSUM MODAL */

.modal-body strong {
  color: var(--text);
  font-weight: 600;
}


/* FINAL FEINSCHLIFF */

.menu-links {
  gap: .08rem;
}

.menu-links a,
.menu-links button {
  font-size: .72rem;
  letter-spacing: .06rem;
}

.timer-presets .mini-btn {
  min-width: 58px;
  white-space: nowrap;
}

.modal-body a[data-mail-link] {
  color: var(--mint);
  text-decoration: none;
}

.modal-body a[data-mail-link]:hover {
  color: var(--text);
}


/* FINALER POLISH */

.walk-score-card {
  border-color: rgba(55,188,155,.16);
}

.walk-score-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(55,188,155,.75), rgba(55,188,155,.16));
  opacity: .8;
}

.walk-score-card .info-value {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 600;
}

#addNoteBtn {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.035);
}

#addNoteBtn:hover {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.055);
}

#addNoteBtn svg,
#addNoteBtn i {
  stroke-width: 2.15;
}

.menu-links {
  padding-top: .62rem;
  padding-bottom: .62rem;
}

.menu-links a,
.menu-links button {
  padding: .48rem 0;
}

.menu-links {
  gap: .04rem;
  padding-top: .62rem;
  padding-bottom: .62rem;
}

.menu-links a,
.menu-links button {
  padding: .48rem 0;
  color: rgba(255,255,255,.52);
  font-size: .7rem;
  letter-spacing: .06rem;
}

.menu-links .menu-feedback-link {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  color: var(--mint);
}

.menu-feedback-link i,
.menu-feedback-link svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.9;
}

.menu-links .menu-legal-link {
  color: rgba(255,255,255,.42);
}

.menu-links .menu-legal-link:hover,
.menu-links .menu-feedback-link:hover {
  color: var(--text);
}

#refreshWeatherBtn.is-loading,
#refreshWeatherBtn:active {
  border-color: rgba(55,188,155,.62);
  color: var(--mint);
  background: rgba(55,188,155,.13);
}

#refreshWeatherBtn.is-loading {
  box-shadow: 0 0 0 3px rgba(55,188,155,.08);
}


/* TIMER 1/100 */

.timer-card .info-value,
#walkTimerValue {
  font-variant-numeric: tabular-nums;
  letter-spacing: .045rem;
  white-space: nowrap;
}


/* TIMER TOGGLE START/PAUSE */

.timer-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timer-controls .timer-toggle-btn {
  color: var(--mint);
  border-color: rgba(55,188,155,.32);
  background: rgba(55,188,155,.075);
}

.timer-controls .timer-toggle-btn:hover {
  color: var(--text);
  border-color: rgba(55,188,155,.48);
  background: rgba(55,188,155,.12);
}


/* IDEEN TEXT MAX 140, NICHT VISUELL KÜRZEN */

.note.is-idea .text {
  display: block;
  min-height: auto;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
}


/* NOTIZEN NUMMERIERUNG */

.note:not(.is-idea) .title {
  letter-spacing: .055rem;
}


/* NOTIZEN TEXT NICHT VISUELL KÜRZEN */

.note:not(.is-idea) .text {
  display: block;
  min-height: auto;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
}


/* APP INSTALL / DATENBEREICHE */

.storage-areas {
  color: rgba(255,255,255,.68);
}

#installAppBtn {
  border-color: rgba(55,188,155,.28);
  color: var(--mint);
  background: rgba(55,188,155,.065);
}

#installAppBtn:hover {
  border-color: rgba(55,188,155,.44);
  color: var(--text);
  background: rgba(55,188,155,.1);
}

#installAppBtn:disabled {
  color: rgba(255,255,255,.42);
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}


/* APP INSTALLIERT BUTTON INAKTIV */

#installAppBtn.is-installed,
#installAppBtn:disabled {
  pointer-events: none;
  opacity: .48;
  color: rgba(255,255,255,.46);
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}


/* FIELD GUIDE HEADLINE FLOW */

.field-note-head {
  display: grid;
  gap: .2rem;
  margin-bottom: .58rem;
}

.field-note-card .text {
  margin-top: 0;
}


/* SMARTPHONE ONLY */

.device-only-notice {
  display: none;
}

@media (min-width: 768px) {
  body {
    min-height: 100svh;
    overflow: hidden;
  }

  body > :not(.device-only-notice):not(script) {
    display: none !important;
  }

  .device-only-notice {
    display: grid;
    min-height: 100svh;
    place-items: center;
    padding: 2rem;
    background:
      radial-gradient(circle at 50% 20%, rgba(55,188,155,.14), transparent 32rem),
      var(--bg);
  }

  .device-only-card {
    width: min(25rem, 100%);
    display: grid;
    gap: .85rem;
    text-align: center;
    justify-items: center;
    padding: 2rem 1.4rem;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--r);
    background: rgba(255,255,255,.035);
    box-shadow: 0 1.5rem 4rem rgba(0,0,0,.28);
  }

  .device-only-icon {
    width: 3.1rem;
    height: 3.1rem;
    display: grid;
    place-items: center;
    color: var(--mint);
    border: 1px solid rgba(55,188,155,.28);
    border-radius: 999px;
    background: rgba(55,188,155,.075);
  }

  .device-only-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    stroke-width: 1.75;
  }

  .device-only-card h1 {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.45rem);
    letter-spacing: -.035em;
  }

  .device-only-card p {
    max-width: 19rem;
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
  }
}


/* SMARTPHONE ONLY EMAIL */

.device-only-mail {
  margin-top: .25rem;
  color: var(--mint);
  font-size: .78rem;
  letter-spacing: .045rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(55,188,155,.34);
}

.device-only-mail:hover {
  color: var(--text);
  border-color: rgba(255,255,255,.42);
}


/* SMARTPHONE ONLY QR */

@media (min-width: 768px) {
  .device-only-qr {
    width: 9.5rem;
    height: 9.5rem;
    display: block;
    padding: .55rem;
    border-radius: calc(var(--r) + 4px);
    background: #fff;
    image-rendering: pixelated;
    box-shadow: 0 .7rem 2.2rem rgba(0,0,0,.28);
  }
}


/* SMARTPHONE ONLY BRAND */

@media (min-width: 768px) {
  .device-only-brand {
    width: 8.9rem;
    display: grid;
    gap: .02rem;
    justify-items: stretch;
    margin-bottom: .04rem;
  }

  .device-only-logo {
    width: 100%;
    color: var(--text);
    font-family: Dongle, var(--font-heading, inherit);
    font-size: 2.35rem;
    font-weight: 400;
    line-height: .72;
    letter-spacing: .035rem;
    text-align: center;
    white-space: nowrap;
  }

  .device-only-logo span {
    color: var(--mint);
  }

  .device-only-slogan {
    width: 100%;
    margin: 0;
    color: rgba(255,255,255,.56);
    font-size: .76rem;
    line-height: 1.15;
    letter-spacing: .032rem;
    text-align: center;
    white-space: nowrap;
  }
}

.disabled {
  opacity: .35;
  pointer-events: none;
  cursor: default;
}