@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700&family=Inter:wght@400;500;600;700&display=swap");
/*375px;*/
:root {
  --color-green-dark: #1B261B;
  --color-teal: #00B0A2;
  --color-gold: #C8A84B;
  --color-text-primary: #F0EDE6;
  --color-text-secondary: #7a9a7a;
  --color-surface: #1e2e1e;
  --color-error: #ef4444;
  --color-teal-12: rgba(0, 176, 162, 0.12);
  --font-heading: Space Grotesk, sans-serif;
  --font-body: Inter, sans-serif;
  --radius-sm: 8px;
  --radius-card: 12px;
  --radius-lg: 16px;
  --radius-pill: 44px;
  --radius-panel: 14px;
  --radius-element: 10px;
  --nav-height: 64px;
  --header-height: 56px;
  --content-padding: 20px;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #1B261B;
  color: #F0EDE6;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
}

.app-root *,
.app-root *::before,
.app-root *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.app-root a,
.app-root a:link,
.app-root a:visited,
.app-root a:hover,
.app-root a:active {
  color: #F0EDE6;
  text-decoration: none;
}
.app-root :where(button) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}
.app-root :where(img, svg) {
  display: block;
  max-width: 100%;
}
.app-root :where(ul, ol) {
  list-style: none;
}
.app-root :where(input, textarea, select) {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
.app-root :where(h1, h2, h3, h4, h5, h6) {
  font-weight: inherit;
  font-size: inherit;
}

.h1,
h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #F0EDE6;
}

.h2,
h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #F0EDE6;
}

.text-body-bold {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #F0EDE6;
}

.text-body {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #F0EDE6;
}

.text-caption {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  color: #7a9a7a;
}

.text-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a9a7a;
}

.text-teal {
  color: #00B0A2;
}

.text-gold {
  color: #C8A84B;
}

.text-muted {
  color: #7a9a7a;
}

.text-primary {
  color: #F0EDE6;
}

.text-error {
  color: #ef4444;
}

.section-heading {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a9a7a;
  margin-bottom: 12px;
}

.app-root {
  position: relative;
  min-height: 100dvh;
  max-width: 1200px;
  padding-top: 40px;
  margin-inline: auto;
  background-color: #1B261B;
  overflow: hidden;
  touch-action: pan-y;
}

@keyframes saltops-slide-in-from-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes saltops-slide-in-from-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes saltops-slide-out-to-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes saltops-slide-out-to-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
.app-slide {
  display: contents;
}

.app-slide.is-sliding-out-left {
  display: block;
  animation: saltops-slide-out-to-left 0.22s ease-out forwards;
}

.app-slide.is-sliding-out-right {
  display: block;
  animation: saltops-slide-out-to-right 0.22s ease-out forwards;
}

.app-slide.is-sliding-in-right {
  display: block;
  animation: saltops-slide-in-from-right 0.22s ease-out both;
}

.app-slide.is-sliding-in-left {
  display: block;
  animation: saltops-slide-in-from-left 0.22s ease-out both;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 56px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1B261B;
  border-bottom: 1px solid rgba(0, 176, 162, 0.12);
  padding-top: env(safe-area-inset-top, 0);
}
.app-header__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #F0EDE6;
}
.app-header__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1e2e1e;
  color: #00B0A2;
}
.app-header__action svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.app-content {
  padding: 20px 20px;
  padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px) + 20px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.screen-hero {
  padding: 24px 20px 20px;
}
.screen-hero__event-date {
  margin-bottom: 16px;
}
.screen-hero__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #F0EDE6;
  font-size: 26px;
  margin-bottom: 4px;
}
.screen-hero__title span {
  display: block;
  color: #00B0A2;
}
.screen-hero__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  color: #7a9a7a;
  margin-top: 8px;
}

.screen-section {
  margin-bottom: 24px;
}
.screen-section + .screen-section {
  padding-top: 16px;
  border-top: 1px solid rgba(0, 176, 162, 0.12);
}

.quick-access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.session-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screen-header {
  padding: 20px 20px 16px;
}
.screen-header__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #F0EDE6;
  line-height: 1.2;
  margin: 0 0 4px;
}
.screen-header__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #9ab09a;
  margin: 0;
}
.screen-header__action {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #00B0A2;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 3px;
}
.screen-header--flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.location-filter-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  margin-bottom: 12px;
  background: rgba(0, 176, 162, 0.1);
  border: 1px solid rgba(0, 176, 162, 0.25);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #00B0A2;
}
.location-filter-banner svg {
  flex-shrink: 0;
}
.location-filter-banner span {
  flex: 1;
}
.location-filter-banner__clear {
  flex-shrink: 0;
  color: #00B0A2;
  opacity: 0.6;
  line-height: 0;
}
.location-filter-banner__clear:active {
  opacity: 1;
}

.section-label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #9ab09a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
}

.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  min-height: calc(100dvh - 64px);
  gap: 12px;
  padding: 32px 20px;
}
.error-404__code {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: rgba(0, 176, 162, 0.25);
  margin: 0;
}
.error-404__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #F0EDE6;
  margin: 0;
}
.error-404__message {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #9ab09a;
  line-height: 1.5;
  margin: 0 0 36px;
  max-width: 260px;
}

.btn-outline-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 176, 162, 0.06);
  border: 1px solid rgba(0, 176, 162, 0.3);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #00B0A2;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-outline-sm:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.btn-outline-sm {
  transition: background-color 150ms ease;
}
.btn-outline-sm:active {
  background-color: rgba(0, 176, 162, 0.15);
}
.btn-outline-sm {
  gap: 6px;
  padding: 0 12px;
  height: 29px;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.btn-outline-sm img {
  width: 13px;
  height: 13px;
  display: block;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.btn:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.btn {
  display: inline-flex;
  width: 100%;
  padding: 12px 24px;
  border-radius: 44px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  max-width: 400px;
  margin: 0 auto;
  transition: opacity 150ms ease, background-color 150ms ease;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}
.btn:active {
  opacity: 0.8;
}

.btn--primary {
  background-color: #00B0A2;
  color: #1B261B;
  border: none;
}
.btn--primary:hover {
  background-color: rgb(0, 145.4, 133.8340909091);
}

.btn--secondary {
  background-color: transparent;
  color: #00B0A2;
  border: 1px solid #00B0A2;
}
.btn--secondary:hover {
  background-color: rgba(0, 176, 162, 0.2);
}

.btn--highlight {
  background-color: rgba(200, 168, 75, 0.15);
  color: #C8A84B;
  border: 1px solid rgba(200, 168, 75, 0.35);
}

.btn--sm {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 8px;
}

.card {
  background-color: #1e2e1e;
  border-radius: 12px;
  border: 1px solid rgba(0, 176, 162, 0.12);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.card--session {
  background-color: #1e2e1e;
  border-radius: 12px;
  border-left: 3px solid #00B0A2;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card--session .card__time {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #F0EDE6;
  color: #00B0A2;
  white-space: nowrap;
  min-width: 56px;
}
.card--session .card__body {
  flex: 1;
  min-width: 0;
}
.card--session .card__title {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #F0EDE6;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.card--session .card__location {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  color: #7a9a7a;
  margin-top: 2px;
}
.card--session .card__badge {
  flex-shrink: 0;
}

.card--quick-access {
  background-color: #1e2e1e;
  border-radius: 12px;
  border: 1px solid rgba(0, 176, 162, 0.12);
  padding: 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-height: 96px;
  cursor: pointer;
  transition: background-color 150ms ease;
}
.card--quick-access:active {
  background-color: rgb(38.0526315789, 58.3473684211, 38.0526315789);
}
.card--quick-access .card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(0, 176, 162, 0.15);
}
.card--quick-access .card__icon-wrap svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #00B0A2;
}
.card--quick-access .card__label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #F0EDE6;
}

.card--countdown {
  background-color: #1e2e1e;
  border-radius: 12px;
  border: 1px solid rgba(0, 176, 162, 0.12);
  padding: 20px;
  text-align: center;
}
.card--countdown .card__countdown-header {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a9a7a;
  margin-bottom: 16px;
}
.card--countdown .card__countdown-units {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.card--countdown .card__countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.card--countdown .card__countdown-value {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 176, 162, 0.12);
  border: 1px solid rgba(0, 176, 162, 0.2);
  border-radius: 8px;
  padding: 4px 12px;
  min-width: 56px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #00B0A2;
  line-height: 1;
}
.card--countdown .card__countdown-sep {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #00B0A2;
  line-height: 1;
  margin-bottom: 20px;
}
.card--countdown .card__countdown-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  color: #7a9a7a;
  letter-spacing: 0.04em;
}

.chip {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 8px;
  line-height: 1;
  white-space: nowrap;
}

.chip--teal, .chip--breakout {
  background-color: rgba(0, 176, 162, 0.15);
  color: #00B0A2;
  border: 1px solid rgba(0, 176, 162, 0.35);
}

.chip--gold, .chip--keynote {
  background-color: rgba(200, 168, 75, 0.15);
  color: #C8A84B;
  border: 1px solid rgba(200, 168, 75, 0.35);
}

.chip--red {
  background-color: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.chip--green, .chip--networking {
  background-color: rgba(61, 90, 61, 0.3);
  color: #7aaa7a;
  border: 1px solid rgba(122, 170, 122, 0.25);
}

.chip--event-date {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 44px;
  background-color: rgba(0, 176, 162, 0.12);
  border: 1px solid rgba(0, 176, 162, 0.25);
  color: #00B0A2;
}
.chip--event-date::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #00B0A2;
  flex-shrink: 0;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: calc(64px + env(safe-area-inset-bottom, 0px));
  background-color: #1e2e1e;
  border-top: 1px solid rgba(0, 176, 162, 0.12);
  display: flex;
  align-items: flex-start;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  z-index: 100;
}

.bottom-nav__item {
  --stroke-0: #7a9a7a;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.bottom-nav__item:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.bottom-nav__item {
  transition: color 150ms ease;
  color: #7a9a7a;
  padding-top: 12px;
}
.bottom-nav__item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: stroke 150ms ease;
}
.bottom-nav__item__label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: currentColor;
  letter-spacing: 0.02em;
}
.bottom-nav__item.is-active, .bottom-nav__item[aria-current=page] {
  --stroke-0: #00B0A2;
  color: #00B0A2;
}
.bottom-nav__item:active {
  opacity: 0.7;
}

.bottom-nav__icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-nav__badge {
  position: absolute;
  top: -5px;
  right: -7px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background-color: #ef4444;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  pointer-events: none;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #7a9a7a;
  line-height: 1;
}

.form-input {
  width: 100%;
  height: 43px;
  padding: 0 14px;
  background-color: #223022;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #F0EDE6;
  transition: border-color 150ms ease;
  -webkit-tap-highlight-color: transparent;
}
.form-input::-moz-placeholder {
  color: rgba(122, 154, 122, 0.45);
}
.form-input::placeholder {
  color: rgba(122, 154, 122, 0.45);
}
.form-input:focus {
  outline: none;
  border-color: rgba(0, 176, 162, 0.4);
}
.form-input[type=password] {
  letter-spacing: 0.15em;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.form-divider__line {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
}
.form-divider__text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #6a8a6a;
  line-height: 1;
}

body.screen-login {
  background-color: #0f1a0f;
  overflow: visible;
  display: block;
  min-height: 0;
  max-width: none;
  padding-top: 0;
  margin-inline: 0;
}

.screen-login *,
.screen-login *::before,
.screen-login *::after {
  box-sizing: border-box;
}
.screen-login {
  background-color: #0f1a0f;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  padding-top: 40px;
  margin-inline: auto;
  position: relative;
  overflow-x: clip;
}

.login-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 24px;
}

.login-logo {
  width: 110px;
  margin-bottom: 20px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-logo img,
.login-logo svg {
  width: 100%;
  height: auto;
  display: block;
}

.login-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #F0EDE6;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 8px;
}
.login-title span {
  color: #00B0A2;
}

.login-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #7a9a7a;
  text-align: center;
  margin-bottom: 32px;
}

.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.login-form .form-group {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.screen-login .btn {
  border-radius: 10px;
  height: 48px;
}

.btn--reg-code {
  gap: 8px;
}
.btn--reg-code .btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-shrink: 0;
}

.login-divider {
  width: 100%;
  margin: 20px 0 16px;
}

.login-forgot {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #6a8a6a;
  text-align: center;
  margin-top: 20px;
}
.login-forgot a {
  color: #00B0A2;
  text-decoration: none;
}
.login-forgot a:hover {
  text-decoration: underline;
}

.login-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #6a8a6a;
  margin-top: 16px;
}
.login-security svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}

.auth-message {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 16px;
}
.auth-message svg {
  flex-shrink: 0;
}
.auth-message--error {
  background-color: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f89898;
}
.auth-message--success {
  background-color: rgba(0, 176, 162, 0.08);
  border: 1px solid rgba(0, 176, 162, 0.3);
  color: #00B0A2;
}

.login-nav-bar {
  height: 72px;
  background-color: rgba(15, 26, 15, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #6a8a6a;
  flex-shrink: 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.consent-screen {
  min-height: 100vh;
  background-color: #0f1a0f;
  display: flex;
  flex-direction: column;
}

.consent-content {
  flex: 1;
  padding: 24px 20px 20px;
  overflow-y: auto;
  padding-bottom: calc(72px + 24px);
}

.consent-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #F0EDE6;
  text-align: center;
  margin: 0 0 8px;
}

.consent-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #7a9a7a;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 20px;
}

.consent-overview {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #6a8a6a;
  line-height: 1.5;
  margin-bottom: 20px;
}
.consent-overview__link {
  color: #6a8a6a;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.consent-overview a {
  color: #6a8a6a;
  text-decoration: underline;
}

.consent-card {
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.consent-card.is-answered {
  border-color: rgba(0, 176, 162, 0.35);
}

.consent-card__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F0EDE6;
  margin: 0 0 8px;
}

.consent-card__body {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #7a9a7a;
  line-height: 1.5;
  margin: 0 0 16px;
}

.consent-card__actions {
  display: flex;
  gap: 12px;
}

.consent-btn {
  flex: 1;
  height: 32px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: opacity 0.15s, background-color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.consent-btn--agree {
  background-color: #223022;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #7a9a7a;
}
.consent-btn--agree.is-selected {
  background-color: #00B0A2;
  border-color: #00B0A2;
  color: #000;
}
.consent-btn--decline {
  background-color: #223022;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #7a9a7a;
}
.consent-btn--decline.is-selected {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #F0EDE6;
}
.consent-btn:active {
  opacity: 0.8;
}

.consent-continue {
  width: 100%;
  margin-top: 8px;
  border-radius: 10px;
  transition: opacity 0.2s;
}
.consent-continue.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.consent-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  background-color: rgba(15, 26, 15, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.consent-footer__note {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #6a8a6a;
}

.screen-home {
  background-color: #0f1a0f;
  min-height: 100dvh;
}

.home-hero {
  position: relative;
  padding: 24px 20px 20px;
}
.home-hero__logo {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.75;
  pointer-events: none;
}
.home-hero__date-chip {
  margin-bottom: 16px;
}
.home-hero__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #F0EDE6;
  margin: 0 0 4px;
}
.home-hero__title span {
  display: block;
  color: #00B0A2;
}
.home-hero__venue {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  color: #7a9a7a;
  color: #7a9a7a;
  margin: 8px 0 0;
}

.welcome-message {
  margin-bottom: 20px;
}
.welcome-message h1, .welcome-message h2, .welcome-message h3 {
  margin-bottom: 4px;
}

.countdown-card {
  margin: 0 0 20px;
  padding: 16px 20px 20px;
  background: linear-gradient(135deg, #223022 0%, #1a2a1a 100%);
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
}
.countdown-card__label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #9ab09a;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.countdown-card__grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.countdown-card__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.countdown-card__digit-box {
  width: 100%;
  height: 54px;
  background-color: rgba(0, 176, 162, 0.15);
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.countdown-card__digit-box span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: #00B0A2;
}
.countdown-card__unit-label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 10px;
  color: #6a8a6a;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.countdown-card__colon {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #6a8a6a;
  padding: 0 4px 20px;
  flex-shrink: 0;
}

.qa-card {
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  height: 96px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-tap-highlight-color: transparent;
}
.qa-card:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.qa-card {
  text-decoration: none;
  transition: opacity 150ms ease;
}
.qa-card:active {
  opacity: 0.75;
}
.qa-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: rgba(0, 176, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qa-card__icon img {
  width: 18px;
  height: 18px;
  display: block;
}
.qa-card__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F0EDE6;
  line-height: 1;
}

.session-row {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.session-row:last-child {
  border-bottom: none;
}
.session-row__time {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #00B0A2;
  width: 60px;
  flex-shrink: 0;
  padding-top: 1px;
}
.session-row__info {
  flex: 1;
  min-width: 0;
}
.session-row__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #F0EDE6;
  margin-bottom: 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.session-row__venue {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #7a9a7a;
}
.session-row__chip {
  flex-shrink: 0;
  margin-left: 8px;
  align-self: center;
}

.day-picker {
  display: flex;
  align-items: stretch;
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  height: 58px;
  overflow: hidden;
  margin-bottom: 16px;
}

.day-picker__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border-radius: 10px;
  margin: 4px;
  transition: background-color 150ms ease;
}
.day-picker__item__number {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #F0EDE6;
}
.day-picker__item__label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 10px;
  color: #6a8a6a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.day-picker__item.is-active {
  background-color: #00B0A2;
}
.day-picker__item.is-active .day-picker__item__number {
  color: #000;
}
.day-picker__item.is-active .day-picker__item__label {
  color: rgba(0, 0, 0, 0.7);
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.session-card-wrap {
  position: relative;
}

.session-card {
  position: relative;
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  overflow: hidden;
  padding: 12px 12px 12px calc(12px + 3px + 12px);
}
.session-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #00B0A2;
  border-radius: 3px 0 0 3px;
}
.session-card--done {
  opacity: 0.45;
}
.session-card--done::before {
  background-color: #C8A84B;
}
.session-card--now {
  background-color: #223022;
  border-color: rgba(0, 176, 162, 0.35);
}
.session-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.session-card__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F0EDE6;
  line-height: 1.35;
  flex: 1;
  min-width: 0;
}
.session-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.session-card__time {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #9ab09a;
}
.session-card__venue {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #6a8a6a;
}
.session-card--bookmarkable {
  padding-right: calc(12px + 34px + 8px);
}
.session-card__save {
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  background-color: rgba(0, 176, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 176, 162, 0.18);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.session-card__save:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.session-card__save {
  transition: background-color 150ms ease;
  position: absolute;
  top: 12px;
  right: 12px;
}
.session-card__save:active {
  background-color: rgba(0, 176, 162, 0.3);
}
.session-card__save img {
  width: 15px;
  height: 15px;
  display: block;
}
.session-card__save.is-saved {
  background-color: rgba(0, 176, 162, 0.25);
  border-color: rgba(0, 176, 162, 0.4);
}

.badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.badge--now {
  background-color: #00B0A2;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.badge--now::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 2.5px;
  flex-shrink: 0;
}

.badge--done {
  background-color: rgba(200, 168, 75, 0.15);
  color: #C8A84B;
  border: 1px solid rgba(200, 168, 75, 0.2);
}

.badge--countdown {
  background-color: rgba(0, 176, 162, 0.12);
  color: #9ab09a;
  border: 1px solid rgba(0, 176, 162, 0.25);
  font-size: 12px;
  letter-spacing: 0.2px;
}

.schedule-cta {
  padding: 12px 0;
}

.detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  flex-shrink: 0;
}

.detail-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #00B0A2;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.detail-nav__back svg {
  flex-shrink: 0;
}
.detail-nav__back:active {
  opacity: 0.7;
}

.detail-nav__chip {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.3px;
  padding: 5px 12px;
  border-radius: 9999px;
}
.detail-nav__chip--keynote {
  background-color: rgba(200, 168, 75, 0.15);
  border: 1px solid rgba(200, 168, 75, 0.2);
  color: #C8A84B;
}
.detail-nav__chip--breakout {
  background-color: rgba(0, 176, 162, 0.12);
  border: 1px solid rgba(0, 176, 162, 0.25);
  color: #00B0A2;
}
.detail-nav__chip--networking {
  background-color: rgba(138, 106, 191, 0.12);
  border: 1px solid rgba(138, 106, 191, 0.25);
  color: #b49de0;
}

.detail-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #F0EDE6;
  line-height: 1.3;
  padding: 8px 20px 12px;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px 16px;
}

.detail-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #9ab09a;
}
.detail-meta__item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.detail-meta__link {
  color: #00B0A2;
  text-decoration: none;
}
.detail-meta__link:active {
  opacity: 0.75;
}

.detail-section-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #7a9a7a;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0 20px 8px;
}

.speaker-card {
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  margin: 0 20px;
}

.speaker-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background-color: rgba(0, 176, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #00B0A2;
}

.speaker-card__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.speaker-card .attendee-row__connect {
  margin-left: auto;
  flex-shrink: 0;
}

.speaker-card__name {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #F0EDE6;
}

.speaker-card__role {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #9ab09a;
}

.speaker-card__company {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #00B0A2;
}

.detail-description {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #9ab09a;
  line-height: 1.6;
  padding: 0 20px 20px;
}

.session-feedback {
  margin: 20px 20px;
  background-color: rgba(0, 176, 162, 0.06);
  border: 1px solid rgba(0, 176, 162, 0.3);
  border-radius: 14px;
  padding: 16px;
}

.session-feedback__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #00B0A2;
  margin-bottom: 12px;
}

.session-feedback__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #9ab09a;
  margin-bottom: 12px;
}

.feedback-submitted-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: rgba(0, 176, 162, 0.08);
  border: 1px solid rgba(0, 176, 162, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
}
.feedback-submitted-card svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.feedback-submitted-card__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F0EDE6;
  margin-bottom: 8px;
}
.feedback-submitted-card__body {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #9ab09a;
}

.feedback-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.feedback-btn {
  flex: 1;
  height: 32px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}
.feedback-btn--yes {
  background-color: #00B0A2;
  border: 1px solid #00B0A2;
  color: #000;
}
.feedback-btn--yes.is-inactive {
  background-color: #223022;
  border-color: rgba(255, 255, 255, 0.08);
  color: #9ab09a;
}
.feedback-btn--no {
  background-color: #223022;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ab09a;
}
.feedback-btn--no.is-active {
  background-color: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #f47878;
}

.feedback-note {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-size: 11px;
  color: #6a8a6a;
  line-height: 1.5;
  margin-bottom: 12px;
}

.feedback-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
}

.feedback-rate-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #F0EDE6;
  margin-bottom: 12px;
}

.feedback-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-bottom: 20px;
}

.feedback-rating__btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #7a9a7a;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}
.feedback-rating__btn.is-selected {
  background-color: #fff;
  border-color: #fff;
  color: #1B261B;
  font-weight: 700;
}

.feedback-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  margin-bottom: 16px;
}

.feedback-field-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #F0EDE6;
}

.feedback-textarea {
  display: block;
  width: 100%;
  background-color: #223022;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 12px;
  font-family: "Inter", sans-serif;
  color: #F0EDE6;
  resize: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
.feedback-textarea::-moz-placeholder {
  color: #757575;
}
.feedback-textarea::placeholder {
  color: #757575;
}
.feedback-textarea:focus {
  outline: none;
  border-color: rgba(0, 176, 162, 0.4);
}

.feedback-save-status {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #00B0A2;
  text-align: center;
  min-height: 1em;
  margin-bottom: 8px;
}

.session-notes {
  padding: 0 20px 24px;
}

.session-notes__label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #9ab09a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.session-notes__textarea {
  width: 100%;
  min-height: 90px;
  background-color: #223022;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px;
  font-family: "Inter", sans-serif;
  color: #F0EDE6;
  resize: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
.session-notes__textarea::-moz-placeholder {
  color: #757575;
}
.session-notes__textarea::placeholder {
  color: #757575;
}
.session-notes__textarea:focus {
  outline: none;
  border-color: rgba(0, 176, 162, 0.4);
}

.session-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  border-radius: 14px;
}
.session-card-link:active .session-card {
  opacity: 0.75;
}

.session-save-wrap {
  display: flex;
  justify-content: center;
  padding: 0 20px 16px;
  margin-top: 20px;
}

.profile-card {
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 12px;
}
.profile-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
}
.profile-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background-color: rgba(0, 176, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 176, 162, 0.18);
}
.profile-card__avatar span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #00B0A2;
  line-height: 1;
}
.profile-card__identity {
  flex: 1;
  min-width: 0;
}
.profile-card__name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #F0EDE6;
  margin: 0 0 2px;
}
.profile-card__role {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #6a8a6a;
  margin: 0;
}
.profile-card__edit-link {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #00B0A2;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.profile-card__edit-link img {
  width: 12px;
  height: 12px;
}
.profile-card__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.profile-field {
  background-color: #223022;
  border-radius: 6px;
  padding: 8px;
  min-height: 44px;
}
.profile-field__label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #6a8a6a;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.profile-field__value {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #9ab09a;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.completion-card {
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 12px;
}
.completion-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.completion-card__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F0EDE6;
}
.completion-card__percent {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #00B0A2;
  line-height: 1;
}
.completion-card__track {
  height: 6px;
  background-color: #223022;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.completion-card__fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, #00B0A2 0%, #00d4c4 100%);
  transition: width 400ms ease;
}
.completion-card__note {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #6a8a6a;
}

.portal-list {
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  overflow: hidden;
}

.portal-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  height: 67px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.portal-row:last-child {
  border-bottom: none;
}
.portal-row {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.portal-row:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.portal-row {
  transition: background-color 150ms ease;
}
.portal-row:active {
  background-color: rgba(0, 176, 162, 0.05);
}
.portal-row__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: #223022;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.portal-row__icon img {
  width: 18px;
  height: 18px;
  display: block;
}
.portal-row__info {
  flex: 1;
  min-width: 0;
}
.portal-row__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #F0EDE6;
  margin-bottom: 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.portal-row__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #9ab09a;
}
.portal-row__status {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.portal-row__status--done, .portal-row__status--booked {
  color: #22c55e;
}
.portal-row__status--missing {
  color: #ef4444;
}
.portal-row__status--neutral {
  color: #7a9a7a;
}
.portal-row__chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
}
.portal-row__chevron img {
  width: 100%;
  height: 100%;
  display: block;
}

.location-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  height: 55px;
  background-color: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 10px;
  margin-bottom: 16px;
}
.location-banner__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.location-banner__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.location-banner__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #22c55e;
  line-height: 1;
}
.location-banner__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #9ab09a;
  line-height: 1;
}

.badge-card {
  position: relative;
  background-color: #1e2e1e;
  border: 1px solid rgba(0, 176, 162, 0.12);
  border-radius: 16px;
  padding: 20px 16px 16px;
  text-align: center;
  margin-bottom: 16px;
}
.badge-card__avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.badge-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background-color: rgba(0, 176, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 176, 162, 0.18);
  overflow: hidden;
}
.badge-card__avatar span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #00B0A2;
  line-height: 1;
}
.badge-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.badge-card__name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #F0EDE6;
  margin: 0 0 4px;
}
.badge-card__company {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #7a9a7a;
  margin: 0 0 8px;
}
.badge-card__badge-number {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #00B0A2;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.update-profile {
  text-align: center;
  margin-bottom: 20px;
}
.update-profile__buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.update-profile__btn {
  background-color: rgba(0, 176, 162, 0.06);
  border: 1px solid rgba(0, 176, 162, 0.3);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #00B0A2;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.update-profile__btn:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.update-profile__btn {
  transition: background-color 150ms ease;
}
.update-profile__btn:active {
  background-color: rgba(0, 176, 162, 0.15);
}
.update-profile__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: 34px;
  font-size: 13px;
  font-weight: 500;
}
.update-profile__btn img, .update-profile__btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.update-profile__note {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #6a8a6a;
  display: block;
}

.qr-section {
  margin-bottom: 20px;
}
.qr-section__label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #7a9a7a;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 4px;
}
.qr-section__hint {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #6a8a6a;
  text-align: center;
  margin-bottom: 12px;
}
.qr-section__container {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 192px;
  max-height: 220px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.qr-section__container img {
  width: 160px;
  height: 160px;
  display: block;
}

.btn--checkin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background-color: #00B0A2;
  border: none;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn--checkin:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.btn--checkin {
  transition: opacity 150ms ease;
}
.btn--checkin:active {
  opacity: 0.85;
}
.btn--checkin img {
  width: 18px;
  height: 18px;
}

.edit-profile-content {
  padding-bottom: calc(64px + 24px);
}

.edit-profile__heading {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #F0EDE6;
  margin: 0 0 20px;
}

.edit-profile__section-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #00B0A2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 24px 0 12px;
}

.edit-profile__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.edit-profile__submit {
  width: 100%;
  margin: 24px auto;
  display: flex;
  justify-content: center;
}

.avatar-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.avatar-upload__preview {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background-color: rgba(0, 176, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 176, 162, 0.18);
  overflow: hidden;
  position: relative;
}
.avatar-upload__preview span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #00B0A2;
  line-height: 1;
}
.avatar-upload__preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.avatar-upload__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 12px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 176, 162, 0.3);
  background: transparent;
  color: #00B0A2;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 150ms ease;
}
.avatar-upload__btn:active {
  background-color: rgba(0, 176, 162, 0.1);
}
.avatar-upload__status {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #9ab09a;
  min-height: 14px;
}

.contact-detail-content {
  padding-bottom: calc(64px + 24px);
}

.contact-detail__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 0 20px;
}

.contact-detail__avatar {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background-color: rgba(0, 176, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 176, 162, 0.2);
  margin-bottom: 12px;
}
.contact-detail__avatar span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #00B0A2;
  line-height: 1;
}
.contact-detail__avatar--gold {
  background-color: rgba(200, 168, 75, 0.12);
  border-color: rgba(200, 168, 75, 0.25);
}
.contact-detail__avatar--gold span {
  color: #C8A84B;
}

.contact-detail__name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #F0EDE6;
  margin: 0 0 4px;
}

.contact-detail__title {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #7a9a7a;
  margin: 0 0 4px;
}

.contact-detail__company {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #F0EDE6;
  margin: 0 0 8px;
}

.contact-detail__type-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  background-color: rgba(0, 176, 162, 0.12);
  border: 1px solid rgba(0, 176, 162, 0.25);
  color: #00B0A2;
}
.contact-detail__type-chip--gold {
  background-color: rgba(200, 168, 75, 0.12);
  border-color: rgba(200, 168, 75, 0.25);
  color: #C8A84B;
}

.contact-detail__section {
  margin-top: 20px;
  background-color: #1e2e1e;
  border: 1px solid rgba(0, 176, 162, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.contact-detail__section-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #00B0A2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px 8px;
}

.contact-detail__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.contact-detail__row:active {
  opacity: 0.7;
}

.contact-detail__row-label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #7a9a7a;
}

.contact-detail__row-value {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #F0EDE6;
  text-align: right;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-detail__row-value--link {
  color: #00B0A2;
}

.contact-detail__save-wrap {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.contact-detail__save-btn {
  width: 100%;
}
.contact-detail__save-btn.is-saved {
  background-color: rgba(0, 176, 162, 0.15);
  border-color: rgba(0, 176, 162, 0.3);
  color: #00B0A2;
  cursor: default;
}

.contact-detail__notes-wrap {
  padding: 16px;
}
.contact-detail__notes-wrap.is-hidden {
  display: none;
}

.contact-detail__notes-textarea {
  width: calc(100% - 24px);
  min-height: 96px;
  background: #223022;
  border: 1px solid rgba(0, 176, 162, 0.2);
  border-radius: 12px;
  color: #F0EDE6;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  padding: 12px 16px;
  margin: 0 12px;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.contact-detail__notes-textarea::-moz-placeholder {
  color: #6a8a6a;
}
.contact-detail__notes-textarea::placeholder {
  color: #6a8a6a;
}
.contact-detail__notes-textarea:focus {
  outline: none;
  border-color: rgba(0, 176, 162, 0.5);
}

.contact-detail__notes-status {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #7a9a7a;
  margin: 4px 0 0;
  min-height: 16px;
  padding-left: 8px;
  padding-bottom: 2px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  background-color: #223022;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 12px;
}
.search-bar__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
}
.search-bar__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #F0EDE6;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.search-bar__input::-moz-placeholder {
  color: #6a8a6a;
}
.search-bar__input::placeholder {
  color: #6a8a6a;
}

.filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
  margin-bottom: 8px;
}
.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.filter-chip:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.filter-chip {
  transition: opacity 150ms ease;
  text-decoration: none;
}
.filter-chip:active {
  opacity: 0.75;
}
.filter-chip {
  background-color: #223022;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ab09a;
}
.filter-chip--active, .filter-chip[aria-pressed=true] {
  background-color: rgba(0, 176, 162, 0.15);
  border-color: rgba(0, 176, 162, 0.18);
  color: #00B0A2;
}
.filter-chip--gold {
  background-color: rgba(200, 168, 75, 0.15);
  border-color: rgba(200, 168, 75, 0.25);
  color: #C8A84B;
}
.filter-chip:disabled, .filter-chip[aria-disabled=true] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.attendee-list {
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  overflow: hidden;
}

.attendee-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  height: 65px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.attendee-row:last-child {
  border-bottom: none;
}
.attendee-row {
  -webkit-tap-highlight-color: transparent;
}
.attendee-row:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.attendee-row {
  text-decoration: none;
  transition: background-color 150ms ease;
}
.attendee-row:active {
  background-color: rgba(0, 176, 162, 0.05);
}
.attendee-row__avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: rgba(0, 176, 162, 0.12);
  border: 1px solid rgba(0, 176, 162, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.attendee-row__avatar span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #00B0A2;
  line-height: 1;
}
.attendee-row__avatar--gold {
  background-color: rgba(200, 168, 75, 0.12);
  border-color: rgba(200, 168, 75, 0.2);
}
.attendee-row__avatar--gold span {
  color: #C8A84B;
}
.attendee-row__info {
  flex: 1;
  min-width: 0;
}
.attendee-row__name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}
.attendee-row__name {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #F0EDE6;
  white-space: nowrap;
}
.attendee-row__role-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
  background-color: rgba(0, 176, 162, 0.15);
  border: 1px solid rgba(0, 176, 162, 0.18);
  color: #00B0A2;
}
.attendee-row__role-chip--gold {
  background-color: rgba(200, 168, 75, 0.15);
  border-color: rgba(200, 168, 75, 0.25);
  color: #C8A84B;
}
.attendee-row__role-chip--muted {
  background-color: #223022;
  border-color: rgba(255, 255, 255, 0.08);
  color: #6a8a6a;
}
.attendee-row__meta {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #9ab09a;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.attendee-row__connect {
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  background-color: rgba(0, 176, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 176, 162, 0.18);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.attendee-row__connect:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.attendee-row__connect {
  transition: background-color 150ms ease;
}
.attendee-row__connect:active {
  background-color: rgba(0, 176, 162, 0.3);
}
.attendee-row__connect img {
  width: 15px;
  height: 15px;
  display: block;
}
.attendee-row__connect.is-saved {
  background-color: rgba(0, 176, 162, 0.25);
  border-color: rgba(0, 176, 162, 0.4);
  background-image: url("assets/images/icon-saved.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
  cursor: default;
}
.attendee-row__connect.is-saved img {
  display: none;
}

.notif-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.notif-tabs::-webkit-scrollbar {
  display: none;
}

.notif-tab {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background-color: #223022;
  color: #9ab09a;
  -webkit-tap-highlight-color: transparent;
}
.notif-tab:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.notif-tab {
  transition: background-color 150ms ease, color 150ms ease;
}
.notif-tab:active {
  opacity: 0.75;
}
.notif-tab--active, .notif-tab[aria-selected=true] {
  background-color: #00B0A2;
  color: #000;
}

.notif-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notif-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.notif-item .notif-card {
  position: relative;
  z-index: 1;
  will-change: transform;
  transition: transform 0.2s ease-out;
  touch-action: pan-y;
}

.notif-item__delete-bg {
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  width: 88px;
  background-color: #7aaa7a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-item__delete-btn {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  -webkit-tap-highlight-color: transparent;
}

.notif-card {
  position: relative;
  background-color: #1a2a1a !important;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  overflow: hidden;
  padding: 12px 12px 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.notif-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}
.notif-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notif-card__content {
  flex: 1;
  min-width: 0;
  padding-right: 20px;
}
.notif-card__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F0EDE6;
  line-height: 1.3;
  margin-bottom: 8px;
}
.notif-card__body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #9ab09a;
  line-height: 1.4;
  margin-bottom: 8px;
}
.notif-card__time {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #6a8a6a;
}
.notif-card[href] {
  display: flex;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.notif-card--alert::before {
  background-color: #ef4444;
}
.notif-card--alert .notif-card__icon {
  background-color: rgba(239, 68, 68, 0.12);
}
.notif-card--reminder::before {
  background-color: #C8A84B;
}
.notif-card--reminder .notif-card__icon {
  background-color: rgba(200, 168, 75, 0.15);
}
.notif-card--info::before {
  background-color: #00B0A2;
}
.notif-card--info .notif-card__icon {
  background-color: rgba(0, 176, 162, 0.15);
}
.notif-card--admin::before {
  background-color: #6a8a6a;
}
.notif-card--admin .notif-card__icon {
  background-color: #223022;
}

.notif-empty {
  font-size: 13px;
  color: #9ab09a;
  text-align: center;
  padding: 32px 0;
}

.notif-card[data-title] {
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: none;
  -webkit-tap-highlight-color: transparent;
}
.notif-card[data-title]:active {
  opacity: 0.8;
}

.notif-card.is-unread::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #00B0A2;
}

.notif-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  padding: 0;
  width: calc(100% - 32px);
  max-width: 400px;
  max-height: 85vh;
  border: none;
  border-radius: 14px;
  background-color: #1e2e1e;
  overflow-y: auto;
}
.notif-dialog::backdrop {
  background: rgba(0, 0, 0, 0.65);
}
.notif-dialog__inner {
  padding: 20px 16px 20px;
  position: relative;
}
.notif-dialog__handle {
  display: none;
}
.notif-dialog__type-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.notif-dialog__icon {
  display: flex;
  align-items: center;
}
.notif-dialog__type-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ab09a;
}
.notif-dialog__time {
  font-size: 11px;
  color: #6a8a6a;
  margin-left: auto;
}
.notif-dialog__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #F0EDE6;
  line-height: 1.3;
  margin-bottom: 12px;
  padding-right: 20px;
}
.notif-dialog__body {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #9ab09a;
  line-height: 1.6;
  margin-bottom: 12px;
}
.notif-dialog__body:empty {
  display: none;
}
.notif-dialog__actions {
  margin-bottom: 12px;
}
.notif-dialog__link {
  display: inline;
  background: none;
  border: none;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #00B0A2;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.notif-dialog__link:active {
  opacity: 0.7;
}
.notif-dialog__close-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin-top: 16px;
  background: #00B0A2;
  border: none;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1B261B;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.notif-dialog__close-btn:active {
  opacity: 0.7;
}
.notif-dialog--alert {
  border-top: 3px solid #ef4444;
}
.notif-dialog--reminder {
  border-top: 3px solid #C8A84B;
}
.notif-dialog--info {
  border-top: 3px solid #00B0A2;
}
.notif-dialog--admin {
  border-top: 3px solid #6a8a6a;
}

.notif-single {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
.notif-single__bar {
  height: 4px;
  width: 100%;
}
.notif-single__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
}
.notif-single__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #223022;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ab09a;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.notif-single__close:active {
  opacity: 0.7;
}
.notif-single__body {
  flex: 1;
  padding: 8px 16px 32px;
  display: flex;
  flex-direction: column;
}
.notif-single__icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.notif-single__type-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ab09a;
  margin-bottom: 8px;
}
.notif-single__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #F0EDE6;
  line-height: 1.25;
  margin-bottom: 16px;
}
.notif-single__message {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #9ab09a;
  line-height: 1.6;
  margin-bottom: 16px;
}
.notif-single__time {
  font-size: 11px;
  color: #6a8a6a;
  margin-bottom: 24px;
}
.notif-single__cta {
  align-self: stretch;
}
.notif-single--alert .notif-single__bar {
  background: #ef4444;
}
.notif-single--alert .notif-single__icon {
  background: rgba(239, 68, 68, 0.12);
}
.notif-single--reminder .notif-single__bar {
  background: #C8A84B;
}
.notif-single--reminder .notif-single__icon {
  background: rgba(200, 168, 75, 0.15);
}
.notif-single--info .notif-single__bar {
  background: #00B0A2;
}
.notif-single--info .notif-single__icon {
  background: rgba(0, 176, 162, 0.15);
}
.notif-single--admin .notif-single__bar {
  background: #6a8a6a;
}
.notif-single--admin .notif-single__icon {
  background: #223022;
}

.seg-control {
  display: flex;
  align-items: stretch;
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  height: 41px;
  padding: 4px;
  margin-bottom: 12px;
}

.seg-control__option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  border: none;
  background: none;
  color: #9ab09a;
  -webkit-tap-highlight-color: transparent;
}
.seg-control__option:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.seg-control__option {
  transition: background-color 150ms ease, color 150ms ease;
}
.seg-control__option--active, .seg-control__option[aria-selected=true] {
  background-color: #00B0A2;
  color: #000;
}
.seg-control__option:not(.seg-control__option--active):active {
  background-color: rgba(0, 176, 162, 0.08);
}

.map-card {
  background-color: #223022;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
}
.map-card--live {
  height: 240px;
}
.map-card__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-card__loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #223022;
  z-index: 1;
  pointer-events: none;
}
.map-card__loading[hidden] {
  display: none;
}
.map-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.map-card__pin {
  width: 28px;
  height: 28px;
}
.map-card__label {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  height: 20px;
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #00B0A2;
  white-space: nowrap;
}
.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.travel-mode-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.travel-mode-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 8px;
  border-radius: 10px;
  border: 1px solid rgba(0, 176, 162, 0.25);
  background: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #9ab09a;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.travel-mode-btn--active {
  background-color: rgba(0, 176, 162, 0.12);
  border-color: #00B0A2;
  color: #00B0A2;
}
.travel-mode-btn:not(.travel-mode-btn--active):active {
  background-color: rgba(0, 176, 162, 0.06);
}

.map-card__address {
  font-style: normal;
  margin-bottom: 16px;
  padding: 0 2px;
}

.map-card__address-body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.map-card__address-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.map-card__address-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(0, 176, 162, 0.18);
}

.map-card__address-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.map-card__address-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: #00B0A2;
}

.map-card__address-lines {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.map-card__address-venue {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F0EDE6;
  line-height: 1.35;
  margin-bottom: 2px;
}

.map-card__address-line {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #9ab09a;
  line-height: 1.4;
}

.map-card__address-link {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #00B0A2;
  text-decoration: none;
  line-height: 1.4;
}
.map-card__address-link:active {
  opacity: 0.75;
}

.directions-card {
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  overflow: hidden;
}

.direction-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.direction-step:last-child {
  border-bottom: none;
}
.direction-step__num {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background-color: rgba(0, 176, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 176, 162, 0.18);
  margin-top: 1px;
}
.direction-step__num span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #00B0A2;
  line-height: 1;
}
.direction-step__num--destination {
  background-color: #00B0A2;
  border-color: rgba(0, 176, 162, 0.18);
}
.direction-step__num--destination span {
  color: #000;
}
.direction-step__content {
  flex: 1;
  min-width: 0;
}
.direction-step__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F0EDE6;
  line-height: 1.35;
  margin-bottom: 3px;
}
.direction-step__detail {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #9ab09a;
  line-height: 1.3;
}
.direction-step--summary {
  background-color: rgba(0, 176, 162, 0.06);
}
.direction-step--summary .direction-step__title {
  color: #00B0A2;
  font-size: 14px;
}
.direction-step--status {
  padding: 16px 12px;
}
.direction-step__link {
  color: #00B0A2;
  text-decoration: none;
  font-weight: 600;
}
.direction-step__link:active {
  opacity: 0.75;
}

.indoor-map {
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.indoor-map__coming-soon {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #6a8a6a;
  text-align: center;
}
.indoor-map__note {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #6a8a6a;
  text-align: center;
  padding: 0 24px;
}

.help-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 12px;
  min-height: 70px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 176, 162, 0.12);
  background-color: #1e2e1e;
  margin-bottom: 12px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 150ms ease;
}
.help-action:active {
  opacity: 0.75;
}
.help-action--expandable {
  cursor: default;
}
.help-action--expandable > .help-action__icon, .help-action--expandable > .help-action__text, .help-action--expandable > .help-action__chevron {
  cursor: pointer;
}
.help-action__chevron {
  transition: transform 150ms ease;
}
.help-action--open > .help-action__chevron {
  transform: rotate(90deg);
}
.help-action--urgent {
  background-color: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.3);
}
.help-action__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: rgba(0, 176, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.help-action__icon img {
  width: 18px;
  height: 18px;
  display: block;
}
.help-action__icon svg {
  width: 18px;
  height: 18px;
  display: block;
  color: #00B0A2;
}
.help-action--urgent .help-action__icon {
  background-color: rgba(239, 68, 68, 0.12);
}
.help-action__icon--gold {
  background-color: rgba(200, 168, 75, 0.15);
}
.help-action__text {
  flex: 1;
  min-width: 0;
}
.help-action__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #F0EDE6;
  line-height: 1.3;
  margin-bottom: 4px;
  text-align: left;
}
.help-action__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #7a9a7a;
  line-height: 1.3;
  text-align: left;
}
.help-action__chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
}

.help-message-form {
  width: 100%;
  padding: 8px 0 12px;
}
.help-message-form[hidden] {
  display: none;
}

.help-message-textarea {
  width: 100%;
  box-sizing: border-box;
  background-color: #223022;
  border: 1px solid rgba(0, 176, 162, 0.2);
  border-radius: 10px;
  color: #F0EDE6;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  padding: 8px 12px;
  resize: none;
  outline: none;
  margin-bottom: 8px;
  -webkit-tap-highlight-color: transparent;
}
.help-message-textarea::-moz-placeholder {
  color: #6a8a6a;
}
.help-message-textarea::placeholder {
  color: #6a8a6a;
}
.help-message-textarea:focus {
  border-color: rgba(0, 176, 162, 0.5);
}

.help-message-send {
  background-color: rgba(0, 176, 162, 0.06);
  border: 1px solid rgba(0, 176, 162, 0.3);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #00B0A2;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.help-message-send:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.help-message-send {
  transition: background-color 150ms ease;
}
.help-message-send:active {
  background-color: rgba(0, 176, 162, 0.15);
}
.help-message-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 38px;
  font-size: 13px;
  font-weight: 600;
}
.help-message-send:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.faq-list {
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  overflow: hidden;
}

.faq-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 12px;
  padding: 0 14px;
  min-height: 43px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.faq-row:last-child {
  border-bottom: none;
}
.faq-row {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 150ms ease;
}
.faq-row:active {
  background-color: rgba(0, 176, 162, 0.04);
}
.faq-row__question {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #F0EDE6;
  line-height: 1.3;
  min-width: 0;
  height: 43px;
  display: flex;
  align-items: center;
}
.faq-row__chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 150ms ease;
}
.faq-row__answer {
  display: none;
  width: 100%;
  padding: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #9ab09a;
  line-height: 1.5;
}
.faq-row__answer p {
  margin-bottom: 8px;
}
.faq-row__answer p:last-child {
  margin-bottom: 0;
}
.faq-row--open .faq-row__answer {
  display: block;
}
.faq-row--open {
  padding-top: 8px;
  align-items: flex-start;
}
.faq-row--open .faq-row__chevron {
  transform: rotate(90deg);
}

.sponsor-tier-label {
  color: #9ab09a;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  display: block;
}

.sponsor-card {
  position: relative;
  background-color: #1a2a1a;
  border: 1px solid rgba(0, 176, 162, 0.18);
  border-radius: 14px;
  padding: 14px 16px 16px;
  margin-bottom: 16px;
}
.sponsor-card--platinum {
  border-color: rgba(200, 168, 75, 0.3);
}
.sponsor-card--compact {
  padding: 14px 12px 12px;
}
.sponsor-card--compact .sponsor-info__name {
  font-size: 14px;
}

.sponsor-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.sponsor-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  height: 60px;
  max-width: 120px;
  width: 100%;
  flex-shrink: 0;
}
.sponsor-avatar__initials {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #00B0A2;
  line-height: 1;
}
.sponsor-avatar--platinum .sponsor-avatar__initials {
  color: #C8A84B;
}
.sponsor-avatar--sm .sponsor-avatar__initials {
  font-size: 13px;
}

.sponsor-info {
  flex: 1;
  min-width: 0;
}
.sponsor-info__name {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #F0EDE6;
  text-decoration: none;
  margin-bottom: 2px;
}
.sponsor-info__name--link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}
.sponsor-info__links, .sponsor-info__tier, .sponsor-info__booth {
  position: relative;
  z-index: 1;
}
.sponsor-info__tier {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #00B0A2;
  margin-bottom: 2px;
}
.sponsor-info__tier--platinum {
  color: #C8A84B;
}
.sponsor-info__booth {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #9ab09a;
}
.sponsor-info__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.sponsor-info__link {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 150ms ease;
  -webkit-tap-highlight-color: transparent;
}
.sponsor-info__link:active {
  opacity: 0.5;
}
.sponsor-info__link img {
  display: block;
}

.sponsor-bio {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #7a9a7a;
  line-height: 1.5;
  margin-bottom: 12px;
}

.sponsor-sub-label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #7a9a7a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.download-row {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 49px;
  padding: 0 12px;
  background-color: #223022;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 8px;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 150ms ease;
}
.download-row:last-of-type {
  margin-bottom: 0;
}
.download-row:active {
  opacity: 0.7;
}
.download-row__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.6;
}
.download-row__text {
  flex: 1;
  min-width: 0;
}
.download-row__name {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #F0EDE6;
  margin-bottom: 2px;
}
.download-row__meta {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #6a8a6a;
}
.download-row__download {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

.btn--navigate {
  background-color: rgba(0, 176, 162, 0.06);
  border: 1px solid rgba(0, 176, 162, 0.3);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #00B0A2;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn--navigate:focus-visible {
  outline: 2px solid #00B0A2;
  outline-offset: 2px;
}
.btn--navigate {
  transition: background-color 150ms ease;
}
.btn--navigate:active {
  background-color: rgba(0, 176, 162, 0.15);
}
.btn--navigate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 43px;
  font-size: 12px;
  margin-top: 12px;
  cursor: pointer;
}
.btn--navigate img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.page-content {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #F0EDE6;
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #F0EDE6;
  line-height: 1.25;
  margin-top: 20px;
  margin-bottom: 8px;
}
.page-content h1:first-child, .page-content h2:first-child, .page-content h3:first-child, .page-content h4:first-child, .page-content h5:first-child, .page-content h6:first-child {
  margin-top: 0;
}
.page-content h1 {
  font-size: 22px;
}
.page-content h2 {
  font-size: 18px;
}
.page-content h3 {
  font-size: 15px;
}
.page-content h4, .page-content h5, .page-content h6 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7a9a7a;
}
.page-content p {
  margin-bottom: 12px;
}
.page-content p:last-child {
  margin-bottom: 0;
}
.page-content a {
  color: #00B0A2;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-content ul, .page-content ol {
  padding-left: 16px;
  margin-bottom: 12px;
}
.page-content ul li, .page-content ol li {
  margin-bottom: 4px;
}
.page-content ul {
  list-style: disc;
}
.page-content ol {
  list-style: decimal;
}
.page-content strong, .page-content b {
  font-weight: 600;
}
.page-content em, .page-content i {
  font-style: italic;
}
.page-content hr {
  border: none;
  border-top: 1px solid rgba(0, 176, 162, 0.12);
  margin: 20px 0;
}
.page-content blockquote {
  border-left: 3px solid #00B0A2;
  padding-left: 12px;
  color: #7a9a7a;
  font-style: italic;
  margin: 16px 0;
}
.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 12px 0;
}
.page-content .wp-caption,
.page-content figure {
  max-width: 100%;
  margin: 12px 0;
}
.page-content .wp-caption figcaption,
.page-content .wp-caption .wp-caption-text,
.page-content figure figcaption,
.page-content figure .wp-caption-text {
  font-size: 11px;
  color: #6a8a6a;
  text-align: center;
  margin-top: 4px;
}

.onboarding-overlay {
  position: fixed;
  inset: 0;
  background: #1B261B;
  z-index: 200000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.onboarding-overlay[hidden] {
  display: none;
}

.onboarding-panel {
  width: 100%;
  max-width: 420px;
  padding: calc(env(safe-area-inset-top, 0px) + 48px) 20px calc(env(safe-area-inset-bottom, 0px) + 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100dvh;
  box-sizing: border-box;
}

.onboarding-logo {
  width: 72px;
  height: auto;
  margin-bottom: 24px;
}

.onboarding-header {
  text-align: center;
  margin-bottom: 24px;
}

.onboarding-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #F0EDE6;
  margin: 0 0 8px;
  line-height: 1.2;
}

.onboarding-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #7a9a7a;
  margin: 0;
}

.onboarding-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  width: 100%;
  background: #1e2e1e;
  border-radius: 14px;
  border: 1px solid rgba(0, 176, 162, 0.14);
  overflow: hidden;
}

.onboarding-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.onboarding-item:last-child {
  border-bottom: none;
}
.onboarding-item:last-child::after {
  display: none;
}

.onboarding-item__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.onboarding-item__inner[href]:active {
  background: rgba(0, 176, 162, 0.06);
}

.onboarding-item__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: rgba(0, 176, 162, 0.12);
  border: 1px solid rgba(0, 176, 162, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #00B0A2;
  line-height: 1;
}
.onboarding-item__num--gold {
  background: rgba(200, 168, 75, 0.12);
  border-color: rgba(200, 168, 75, 0.3);
  color: #C8A84B;
}

.onboarding-item__text {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #F0EDE6;
  line-height: 1.4;
}

.onboarding-item--final .onboarding-item__text {
  color: #C8A84B;
}

.onboarding-item__chevron {
  flex-shrink: 0;
  color: #6a8a6a;
}

.onboarding-reopen-hint {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #6a8a6a;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 12px;
}

.onboarding-dismiss {
  width: 100%;
  height: 50px;
  border-radius: 9999px;
  border: none;
  background: #00B0A2;
  color: #000;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 150ms ease;
}
.onboarding-dismiss:active {
  opacity: 0.85;
}

.onboarding-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: 1px solid rgba(0, 176, 162, 0.22);
  border-radius: 10px;
  color: #00B0A2;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 16px;
  transition: background-color 150ms ease;
}
.onboarding-trigger:active {
  background: rgba(0, 176, 162, 0.08);
}
.onboarding-trigger svg {
  flex-shrink: 0;
}

.pwa-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pwa-overlay.is-visible {
  opacity: 1;
}
.pwa-overlay.is-visible .pwa-panel {
  transform: translateY(0);
}
@media (min-width: 560px) {
  .pwa-overlay {
    align-items: center;
  }
}

.pwa-panel {
  width: 100%;
  max-width: 1200px;
  background-color: #0f1a0f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px 24px 0 0;
  padding: 24px 20px 20px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transform: translateY(40px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 560px) {
  .pwa-panel {
    border-radius: 20px;
    max-width: 400px;
    padding: 32px 24px 24px;
  }
}

.pwa-logo {
  margin-bottom: 4px;
  opacity: 0.9;
}
.pwa-logo img {
  display: block;
}

.pwa-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #F0EDE6;
  line-height: 1.2;
  margin: 0;
}

.pwa-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #7a9a7a;
  line-height: 1.5;
  max-width: 280px;
  margin: 0;
}

.pwa-steps {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.pwa-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px;
}

.pwa-step__num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background-color: rgba(0, 176, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #00B0A2;
  flex-shrink: 0;
}

.pwa-step__text {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #7a9a7a;
  line-height: 1.4;
}
.pwa-step__text strong {
  color: #F0EDE6;
  font-weight: 600;
}

.pwa-step__inline-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin: 0 2px;
  color: #00B0A2;
}

.pwa-android-icon {
  margin: 8px 0;
}

.pwa-qr {
  margin: 8px 0 4px;
  padding: 8px;
  background-color: #1e2e1e;
  border: 1px solid rgba(0, 176, 162, 0.2);
  border-radius: 14px;
  line-height: 0;
}
.pwa-qr img {
  display: block;
  border-radius: 8px;
}

.pwa-qr-hint {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #6a8a6a;
  margin: 0;
}

.pwa-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}

.pwa-install-btn {
  width: 100%;
  border-radius: 10px;
  height: 48px;
}

.pwa-dismiss {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #6a8a6a;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding: 4px 8px;
}
.pwa-dismiss:hover, .pwa-dismiss:active {
  color: #7a9a7a;
}

.push-prompt {
  position: fixed;
  bottom: calc(72px + 12px);
  left: 16px;
  right: 16px;
  background-color: #1e2e1e;
  border: 1px solid rgba(0, 176, 162, 0.25);
  border-radius: 14px;
  padding: 12px 16px;
  z-index: 900;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: push-prompt-in 0.25s ease-out;
  max-width: 400px;
  margin: 0 auto;
}
.push-prompt__body {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.push-prompt__icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}
.push-prompt__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.push-prompt__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #F0EDE6;
}
.push-prompt__desc {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #7a9a7a;
  line-height: 1.4;
}
.push-prompt__actions {
  display: flex;
  gap: 8px;
}
.push-prompt__actions .btn {
  flex: 1;
}

@keyframes push-prompt-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style-2026-05-24.css.map */