:root {
  --ink: #112a3a;
  --muted: #6f8495;
  --line: rgba(17, 42, 58, 0.12);
  --paper: #f6f1e7;
  --panel: #fffaf0;
  --sand: #e8d4aa;
  --gold: #c88b2b;
  --olive: #52683f;
  --teal: #1f6f78;
  --night: #102b3c;
  --sky: #d7e8ed;
  --danger: #b75b3b;
  font-family: "Avenir Next", "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

html {
  background: #e8edf0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f8f2e8 0%, #eef4f4 52%, #f8f2e8 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.phone-page {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 844px;
  margin: 0 auto;
  padding: 0 18px 102px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 139, 43, 0.28), transparent 25%),
    radial-gradient(circle at 88% 0%, rgba(31, 111, 120, 0.22), transparent 22%),
    linear-gradient(180deg, #fbf4e9 0%, #f1f7f6 48%, #fffaf0 100%);
}

.phone-page::before {
  position: absolute;
  top: 88px;
  right: 18px;
  left: 18px;
  height: 120px;
  content: "";
  border-radius: 32px;
  background: radial-gradient(circle at top right, rgba(31, 111, 120, 0.08), transparent 56%);
  pointer-events: none;
}

.status-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  margin: 0 -18px;
  padding: 11px 28px 0;
  color: var(--ink);
  background: rgba(251, 244, 233, 0.86);
  backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 800;
}

.status-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.app-nav {
  position: sticky;
  top: 42px;
  z-index: 29;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  margin: 0 -18px 14px;
  padding: 8px 18px 10px;
  background: rgba(251, 244, 233, 0.84);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, var(--night), var(--teal));
  box-shadow: 0 12px 24px rgba(16, 43, 60, 0.22);
}

.nav-title {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.nav-title strong {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
}

.nav-title span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.icon-btn {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 42, 58, 0.1);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 22px rgba(17, 42, 58, 0.08);
}

.icon-btn,
.btn-primary,
.btn-secondary,
.btn-ghost,
.pill {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.icon-btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.pill:hover {
  transform: translateY(-1px);
}

.tabbar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  max-width: 430px;
  min-height: 74px;
  margin: 0 auto;
  padding: 8px 14px 14px;
  border-top: 1px solid rgba(17, 42, 58, 0.1);
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(24px);
}

.tabbar a {
  display: grid;
  gap: 4px;
  place-items: center;
  color: #728596;
  font-size: 10px;
  font-weight: 800;
}

.tabbar a i {
  font-size: 18px;
}

.tabbar a.active {
  color: var(--teal);
}

.section {
  margin: 22px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 12px;
}

.section-head h2,
.section-head h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-head small,
.eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
}

.card {
  border: 1px solid rgba(17, 42, 58, 0.1);
  border-radius: 26px;
  background: rgba(255, 251, 244, 0.88);
  box-shadow:
    0 18px 42px rgba(17, 42, 58, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
}

.hero-card {
  position: relative;
  min-height: 344px;
  padding: 20px;
  overflow: hidden;
  border-radius: 32px;
  color: #fff;
  background: #102b3c;
  box-shadow: 0 28px 60px rgba(16, 43, 60, 0.24);
}

.hero-carousel {
  position: relative;
  min-height: 372px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-card img,
.image-card img,
.media-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card > img {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.hero-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 304px;
  flex-direction: column;
  justify-content: space-between;
}

.hero-carousel .hero-content {
  min-height: 332px;
}

.hero-dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.hero-dot.is-active {
  width: 26px;
  background: linear-gradient(90deg, rgba(243, 215, 160, 0.96), rgba(255, 255, 255, 0.88));
}

.hero-title {
  margin: 8px 0 10px;
  color: #fff;
  font-weight: 950;
  font-size: 31px;
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.42);
}

.hero-subtitle {
  margin: 0;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.6;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.34);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid rgba(17, 42, 58, 0.09);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(17, 42, 58, 0.06);
}

.pill.dark {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(10, 31, 44, 0.12);
  backdrop-filter: blur(10px);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 0;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 900;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0f3c50, #1f6f78);
  box-shadow: 0 16px 30px rgba(31, 111, 120, 0.26);
}

.btn-secondary {
  color: var(--ink);
  background: #f3d7a0;
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.search-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 12px;
  border: 1px solid rgba(17, 42, 58, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(17, 42, 58, 0.08);
}

.search-box input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric {
  padding: 14px 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.metric strong {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.trip-card,
.article-card,
.destination-card {
  overflow: hidden;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #d9e4e5;
}

.trip-card .image-card {
  height: 186px;
}

.article-card .image-card,
.destination-card .image-card {
  height: 142px;
}

.image-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(16, 43, 60, 0.72);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 900;
}

.card-body {
  display: grid;
  gap: 11px;
  padding: 15px 15px 16px;
}

.card-title {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.card-text {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.62;
}

.price-row,
.action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.price-row > *,
.action-row > * {
  min-width: 0;
}

.price {
  color: var(--teal);
  font-size: 17px;
  font-weight: 950;
}

.horizontal-scroll {
  display: flex;
  gap: 12px;
  margin: 0 -18px;
  padding: 2px 18px 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.horizontal-scroll > * {
  flex: 0 0 294px;
  scroll-snap-align: start;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.two-col > * {
  min-width: 0;
}

.mini-card {
  padding: 15px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.mini-card i {
  color: var(--gold);
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.timeline-item::after {
  position: absolute;
  top: 30px;
  left: 14px;
  bottom: -14px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, rgba(31, 111, 120, 0.26), rgba(31, 111, 120, 0));
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-dot {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(31, 111, 120, 0.18);
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(17, 42, 58, 0.1);
  border-radius: 17px;
  outline: 0;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.field textarea {
  min-height: 94px;
  padding-top: 12px;
  resize: none;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 5px;
  border-radius: 19px;
  background: rgba(17, 42, 58, 0.08);
}

.segmented button {
  min-height: 38px;
  border: 0;
  border-radius: 15px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
}

.segmented button.active {
  color: var(--ink);
  background: #fffaf0;
  box-shadow: 0 10px 18px rgba(17, 42, 58, 0.08);
}

.map-card {
  --map-active-start: #1f6f78;
  --map-active-end: #d0a253;
  --map-active-glow: rgba(31, 111, 120, 0.2);
  position: relative;
  min-height: 210px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 30%, rgba(31, 111, 120, 0.4), transparent 20%),
    radial-gradient(circle at 72% 66%, rgba(200, 139, 43, 0.42), transparent 18%),
    linear-gradient(135deg, #dce9e8, #f0dfbd);
  box-shadow:
    0 22px 48px rgba(17, 42, 58, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.map-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.3), transparent 18%),
    radial-gradient(circle at 84% 76%, rgba(255, 255, 255, 0.18), transparent 16%),
    repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 16px);
  pointer-events: none;
  opacity: 0.7;
}

.map-card::after {
  position: absolute;
  inset: 16px;
  content: "";
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.map-line {
  position: absolute;
  inset: 45px 42px;
  border: 2px dashed rgba(16, 43, 60, 0.34);
  border-radius: 48% 52% 40% 60%;
  transform: rotate(-13deg);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 26px var(--map-active-glow);
  transition: box-shadow 0.28s ease;
}

.map-line::before {
  position: absolute;
  inset: -10px;
  content: "";
  border: 1px solid rgba(31, 111, 120, 0.14);
  border-radius: 52% 48% 42% 58%;
  filter: blur(1px);
  transition: border-color 0.28s ease;
}

.map-region {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.24;
  pointer-events: none;
  transform: scale(0.88);
  transition:
    opacity 0.26s ease,
    transform 0.26s ease,
    filter 0.26s ease;
}

.map-region.is-active {
  opacity: 0.92;
  transform: scale(1.02);
  filter: blur(7px);
}

.map-region.region-a {
  top: 28px;
  left: 28px;
  width: 104px;
  height: 74px;
  background: radial-gradient(circle, rgba(31, 111, 120, 0.38), rgba(31, 111, 120, 0));
}

.map-region.region-b {
  top: 96px;
  left: 112px;
  width: 96px;
  height: 72px;
  background: radial-gradient(circle, rgba(200, 139, 43, 0.34), rgba(200, 139, 43, 0));
}

.map-region.region-c {
  right: 36px;
  bottom: 34px;
  width: 104px;
  height: 74px;
  background: radial-gradient(circle, rgba(82, 104, 63, 0.34), rgba(82, 104, 63, 0));
}

.map-region.region-d {
  top: 34px;
  right: 54px;
  width: 92px;
  height: 66px;
  background: radial-gradient(circle, rgba(183, 91, 59, 0.28), rgba(183, 91, 59, 0));
}

.map-pin {
  position: absolute;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50% 50% 50% 8px;
  color: #fff;
  background: var(--teal);
  transform: rotate(-45deg);
  box-shadow: 0 12px 26px rgba(16, 43, 60, 0.2);
  border: 0;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  z-index: 3;
  touch-action: manipulation;
}

.map-pin::before {
  position: absolute;
  inset: -10px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: rotate(45deg);
}

.map-pin i {
  transform: rotate(45deg);
}

.map-pin:hover,
.map-pin.is-active {
  transform: rotate(-45deg) translateY(-4px) scale(1.08);
  box-shadow:
    0 20px 34px rgba(16, 43, 60, 0.24),
    0 0 0 8px var(--map-active-glow);
  filter: saturate(1.08);
}

.map-pin:hover::before,
.map-pin.is-active::before {
  opacity: 1;
}

.map-pin.is-active::after {
  position: absolute;
  inset: -8px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50% 50% 50% 10px;
  animation: pinPulse 1.9s ease-out infinite;
}

.map-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  cursor: pointer;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(10, 31, 44, 0.3);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 20px rgba(16, 43, 60, 0.08);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition:
    transform 0.24s ease,
    color 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    opacity 0.24s ease;
  opacity: 0.72;
  white-space: nowrap;
  touch-action: manipulation;
}

.map-label.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--map-active-start), var(--map-active-end));
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow:
    0 14px 26px rgba(16, 43, 60, 0.16),
    0 0 0 6px var(--map-active-glow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  opacity: 1;
}

.label-a {
  top: 34px;
  left: 102px;
}

.label-b {
  top: 106px;
  left: 186px;
}

.label-c {
  right: 18px;
  bottom: 94px;
}

.label-d {
  top: 30px;
  right: 120px;
}

.map-card-route {
  min-height: 228px;
}

.map-card-route .map-line {
  inset: 40px 38px;
  border-radius: 42% 58% 38% 62%;
  transform: rotate(-10deg);
}

.map-card-route .pin-a {
  top: 34px;
  left: 42px;
}

.map-card-route .pin-b {
  top: 108px;
  left: 122px;
}

.map-card-route .pin-d {
  top: 48px;
  right: 78px;
}

.map-card-route .pin-c {
  right: 44px;
  bottom: 48px;
}

.map-card-route .label-a {
  top: 26px;
  left: 88px;
}

.map-card-route .label-b {
  top: 102px;
  left: 166px;
}

.map-card-route .label-d {
  top: 26px;
  right: 114px;
}

.map-card-route .label-c {
  right: 12px;
  bottom: 88px;
}

.map-card-route .region-a {
  top: 20px;
  left: 18px;
  width: 98px;
  height: 68px;
}

.map-card-route .region-b {
  top: 90px;
  left: 94px;
  width: 102px;
  height: 72px;
}

.map-card-route .region-d {
  top: 24px;
  right: 46px;
  width: 96px;
  height: 70px;
}

.map-card-route .region-c {
  right: 26px;
  bottom: 24px;
  width: 112px;
  height: 78px;
}

.map-card-catalog {
  min-height: 220px;
}

.map-card-catalog .map-line {
  inset: 52px 50px 46px 42px;
  border-radius: 54% 46% 44% 56%;
  transform: rotate(-7deg);
}

.map-card-catalog .pin-a {
  top: 70px;
  left: 52px;
}

.map-card-catalog .pin-b {
  top: 120px;
  left: 166px;
}

.map-card-catalog .pin-c {
  right: 58px;
  bottom: 44px;
}

.map-card-catalog .label-a {
  top: 68px;
  left: 96px;
}

.map-card-catalog .label-b {
  top: 116px;
  left: 208px;
}

.map-card-catalog .label-c {
  right: 18px;
  bottom: 98px;
}

.map-card-catalog .region-a {
  top: 58px;
  left: 24px;
  width: 106px;
  height: 76px;
}

.map-card-catalog .region-b {
  top: 102px;
  left: 138px;
  width: 98px;
  height: 72px;
}

.map-card-catalog .region-c {
  right: 32px;
  bottom: 26px;
  width: 112px;
  height: 78px;
}

.map-card-catalog .map-overlay-top {
  max-width: 208px;
}

.map-card-kenya {
  min-height: 224px;
}

.map-card-kenya .map-line {
  inset: 44px 44px 50px 40px;
  border-radius: 46% 54% 40% 60%;
  transform: rotate(-12deg);
}

.map-card-kenya .pin-a {
  top: 38px;
  left: 54px;
}

.map-card-kenya .pin-b {
  top: 118px;
  left: 140px;
}

.map-card-kenya .pin-c {
  right: 50px;
  bottom: 46px;
}

.map-card-kenya .label-a {
  top: 28px;
  left: 100px;
}

.map-card-kenya .label-b {
  top: 112px;
  left: 182px;
}

.map-card-kenya .label-c {
  right: 10px;
  bottom: 90px;
}

.map-card-kenya .region-a {
  top: 26px;
  left: 30px;
  width: 102px;
  height: 74px;
}

.map-card-kenya .region-b {
  top: 106px;
  left: 112px;
  width: 96px;
  height: 74px;
}

.map-card-kenya .region-c {
  right: 28px;
  bottom: 28px;
  width: 110px;
  height: 82px;
}

.map-overlay-summary {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  box-shadow:
    0 16px 32px rgba(16, 43, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(18px);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
  pointer-events: none;
}

.map-overlay-top {
  top: 14px;
  right: auto;
  bottom: auto;
  left: 14px;
  max-width: 220px;
}

.map-overlay-summary::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--map-active-start), var(--map-active-end));
}

.map-overlay-summary.is-switching {
  transform: translateY(2px) scale(0.992);
}

.map-summary-title,
.map-summary-text {
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.map-summary-title.is-switching,
.map-summary-text.is-switching {
  opacity: 0.42;
  transform: translateY(3px);
}

@keyframes pinPulse {
  0% {
    opacity: 0.72;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

.map-panels {
  display: grid;
  gap: 14px;
}

.map-panel {
  --panel-accent-start: rgba(31, 111, 120, 0.84);
  --panel-accent-end: rgba(200, 139, 43, 0.88);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 42, 58, 0.08);
  background:
    radial-gradient(circle at top right, rgba(31, 111, 120, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(200, 139, 43, 0.12), transparent 26%),
    linear-gradient(155deg, rgba(255, 251, 244, 0.98), rgba(232, 241, 239, 0.9));
  box-shadow:
    0 20px 38px rgba(17, 42, 58, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.map-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--panel-accent-start), var(--panel-accent-end));
}

.map-panel[hidden] {
  display: none;
}

.map-panel.is-active {
  animation: panelRise 0.28s ease;
  box-shadow:
    0 22px 40px rgba(17, 42, 58, 0.12),
    0 0 0 8px var(--map-active-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.map-panel-head,
.map-panel-kpi,
.map-panel-tag,
.map-panel-note {
  will-change: transform, opacity;
}

.map-panel-head.is-entering,
.map-panel-kpi.is-entering,
.map-panel-tag.is-entering,
.map-panel-note.is-entering {
  animation: mapItemRise 0.34s ease both;
}

@keyframes mapItemRise {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.map-panel-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.map-panel-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 14px 28px rgba(16, 43, 60, 0.16);
}

.map-panel-icon.is-teal {
  background: linear-gradient(145deg, #124153, #1f6f78);
}

.map-panel-icon.is-gold {
  background: linear-gradient(145deg, #a56d1d, #d19a3b);
}

.map-panel-icon.is-olive {
  background: linear-gradient(145deg, #4a5f3a, #728c5a);
}

.map-panel-icon.is-coral {
  background: linear-gradient(145deg, #8f452d, #c66f4e);
}

.map-panel-eyebrow {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-panel-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.map-pin:focus-visible,
.map-label:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.96);
  outline-offset: 2px;
}

.map-panel-kpi {
  padding: 12px 10px;
  border: 1px solid rgba(17, 42, 58, 0.06);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 240, 229, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.map-panel-kpi strong {
  display: block;
  font-size: 15px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.map-panel-kpi span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
}

.map-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.map-panel-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(17, 42, 58, 0.08);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 800;
}

.map-panel-note {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-top: 14px;
  padding: 12px 13px;
  border-radius: 18px;
  color: rgba(17, 42, 58, 0.86);
  background: rgba(17, 42, 58, 0.06);
}

.map-panel-note i {
  margin-top: 2px;
  color: var(--teal);
}

.map-panel-note span {
  display: block;
  font-size: 11px;
  line-height: 1.55;
}

@keyframes panelRise {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pin-a {
  top: 42px;
  left: 58px;
}

.pin-b {
  top: 112px;
  left: 142px;
  background: var(--gold);
}

.pin-c {
  right: 54px;
  bottom: 52px;
  background: var(--olive);
}

.pin-d {
  top: 54px;
  right: 76px;
  background: var(--danger);
}

.sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 82px;
  left: 12px;
  z-index: 35;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 406px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(17, 42, 58, 0.1);
  border-radius: 25px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 20px 42px rgba(17, 42, 58, 0.18);
  backdrop-filter: blur(18px);
}

.sticky-cta > * {
  min-width: 0;
}

.read-progress {
  position: sticky;
  top: 96px;
  z-index: 20;
  height: 4px;
  margin: 0 -18px 12px;
  background: rgba(17, 42, 58, 0.08);
}

.editor-grid {
  display: grid;
  gap: 14px;
}

.story-panel {
  padding: 18px;
  border: 1px solid rgba(17, 42, 58, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 18px 40px rgba(17, 42, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.story-panel h3,
.story-panel h4 {
  margin: 0;
  letter-spacing: -0.03em;
}

.story-panel p {
  margin: 0;
}

.article-prose {
  display: grid;
  gap: 18px;
}

.article-prose p {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.86;
}

.article-prose h2,
.article-prose h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

.article-prose h2 {
  font-size: 27px;
}

.article-prose h3 {
  font-size: 21px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-chip {
  position: relative;
  overflow: hidden;
  padding: 14px 15px;
  border: 1px solid rgba(17, 42, 58, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(200, 139, 43, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(255, 252, 246, 0.94), rgba(232, 241, 239, 0.82));
  box-shadow:
    0 16px 34px rgba(17, 42, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.stat-chip::after {
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: 82px;
  height: 82px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 111, 120, 0.12), transparent 68%);
  pointer-events: none;
}

.stat-chip strong {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.stat-chip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-card .highlight-grid {
  margin-top: 18px;
}

.hero-card .stat-chip {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at top right, rgba(200, 139, 43, 0.34), transparent 42%),
    linear-gradient(160deg, rgba(11, 34, 46, 0.82), rgba(28, 84, 89, 0.52));
  box-shadow:
    0 20px 38px rgba(7, 19, 28, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-card .stat-chip:nth-child(2n) {
  background:
    radial-gradient(circle at top right, rgba(31, 111, 120, 0.34), transparent 40%),
    linear-gradient(160deg, rgba(13, 30, 40, 0.82), rgba(89, 58, 22, 0.46));
}

.hero-card .stat-chip::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
}

.hero-card .stat-chip strong {
  color: #fff;
  font-size: 17px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.34);
}

.hero-card .stat-chip span {
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.soft-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 42, 58, 0.12), transparent);
}

.article-lead {
  font-size: 16px;
  line-height: 1.78;
  color: rgba(17, 42, 58, 0.92);
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.insight-card {
  padding: 14px 12px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.insight-card strong {
  display: block;
  font-size: 18px;
}

.insight-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.hero-card .insight-strip {
  margin-top: 18px;
}

.hero-card .insight-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(243, 215, 160, 0.46), transparent 40%),
    linear-gradient(160deg, rgba(7, 28, 38, 0.96), rgba(24, 93, 100, 0.74));
  box-shadow:
    0 22px 38px rgba(7, 20, 29, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.hero-card .insight-card:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(85, 210, 205, 0.42), transparent 40%),
    linear-gradient(160deg, rgba(8, 30, 42, 0.96), rgba(104, 67, 27, 0.68));
}

.hero-card .insight-card:nth-child(3) {
  background:
    radial-gradient(circle at top right, rgba(180, 214, 138, 0.38), transparent 40%),
    linear-gradient(160deg, rgba(8, 29, 38, 0.96), rgba(58, 108, 78, 0.7));
}

.hero-card .insight-card::after {
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: 76px;
  height: 76px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 72%);
  pointer-events: none;
}

.hero-card .insight-card strong {
  color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 16px rgba(4, 15, 23, 0.32);
}

.hero-card .insight-card span {
  color: #fff;
  font-weight: 900;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.detail-list {
  display: grid;
  gap: 10px;
}

.detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.detail-list li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}

.trip-kpi-card {
  border: 1px solid rgba(17, 42, 58, 0.08);
  background:
    radial-gradient(circle at top right, rgba(200, 139, 43, 0.16), transparent 42%),
    linear-gradient(155deg, rgba(255, 251, 244, 0.96), rgba(222, 238, 236, 0.82));
  box-shadow:
    0 16px 34px rgba(17, 42, 58, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.trip-kpi-card:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(31, 111, 120, 0.16), transparent 42%),
    linear-gradient(155deg, rgba(249, 251, 247, 0.96), rgba(230, 241, 236, 0.82));
}

.trip-kpi-card:nth-child(3) {
  background:
    radial-gradient(circle at top right, rgba(82, 104, 63, 0.18), transparent 42%),
    linear-gradient(155deg, rgba(252, 249, 241, 0.96), rgba(235, 240, 228, 0.82));
}

.trip-anchor-card {
  background:
    radial-gradient(circle at top right, rgba(31, 111, 120, 0.08), transparent 38%),
    linear-gradient(160deg, rgba(255, 251, 245, 0.94), rgba(239, 246, 245, 0.84));
}

.trip-insight-panel {
  background:
    radial-gradient(circle at top right, rgba(200, 139, 43, 0.12), transparent 34%),
    linear-gradient(160deg, rgba(255, 251, 246, 0.94), rgba(234, 243, 241, 0.86));
}

.trip-month-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 242, 231, 0.82));
  border: 1px solid rgba(17, 42, 58, 0.06);
}

.trip-insight-chip {
  background:
    radial-gradient(circle at top right, rgba(31, 111, 120, 0.14), transparent 42%),
    linear-gradient(150deg, rgba(255, 251, 245, 0.96), rgba(231, 241, 239, 0.84));
}

.trip-insight-chip:nth-child(2n) {
  background:
    radial-gradient(circle at top right, rgba(200, 139, 43, 0.16), transparent 42%),
    linear-gradient(150deg, rgba(255, 249, 241, 0.96), rgba(240, 236, 223, 0.84));
}

@media (max-width: 380px) {
  .map-panel-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-overlay-top {
    max-width: 196px;
  }

  .map-label {
    min-height: 26px;
    padding: 0 9px;
    font-size: 9px;
  }

  .label-a {
    left: 92px;
  }

  .label-b {
    top: 102px;
    left: 162px;
  }

  .label-d {
    right: 102px;
  }

  .map-card-route .label-a {
    left: 78px;
  }

  .map-card-route .label-b {
    left: 148px;
  }

  .map-card-route .label-d {
    right: 102px;
  }

  .map-card-catalog .label-a {
    left: 88px;
  }

  .map-card-catalog .label-b {
    left: 178px;
  }

  .map-card-kenya .label-a {
    left: 90px;
  }

  .map-card-kenya .label-b {
    left: 160px;
  }

  .highlight-grid,
  .insight-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 350px) {
  .map-panel-kpis {
    grid-template-columns: 1fr;
  }

  .map-overlay-top {
    max-width: 182px;
  }

  .label-a {
    left: 86px;
  }

  .label-b {
    left: 148px;
  }

  .label-d {
    right: 92px;
  }

  .map-card-route .label-a {
    left: 72px;
  }

  .map-card-route .label-b {
    left: 138px;
  }

  .map-card-catalog .label-a {
    left: 80px;
  }

  .map-card-catalog .label-b {
    left: 164px;
  }

  .map-card-kenya .label-a {
    left: 82px;
  }

  .map-card-kenya .label-b {
    left: 146px;
  }
}

.read-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-cell {
  display: grid;
  min-height: 38px;
  place-items: center;
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 800;
}

.calendar-cell.active {
  color: #fff;
  background: var(--teal);
}

.calendar-cell.disabled {
  opacity: 0.34;
}

.compare-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: separate;
  border-spacing: 0 8px;
  font-size: 11px;
}

.compare-table th,
.compare-table td {
  padding: 10px;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
  background: rgba(255, 255, 255, 0.7);
}

.compare-table th:first-child,
.compare-table td:first-child {
  border-radius: 14px 0 0 14px;
}

.compare-table th:last-child,
.compare-table td:last-child {
  border-radius: 0 14px 14px 0;
}

.prototype-index {
  min-height: 100vh;
  padding: 38px;
  background:
    radial-gradient(circle at 10% 4%, rgba(200, 139, 43, 0.22), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(31, 111, 120, 0.2), transparent 24%),
    linear-gradient(135deg, #0e2534 0%, #243f3b 45%, #e8d4aa 160%);
}

.prototype-hero {
  max-width: 1160px;
  margin: 0 auto 28px;
  color: #fff;
}

.prototype-hero h1 {
  max-width: 780px;
  margin: 10px 0 12px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.prototype-hero p {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.prototype-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
  gap: 32px;
  align-items: start;
}

.prototype-frame-card {
  display: grid;
  justify-content: center;
  gap: 14px;
  color: #fff;
}

.prototype-frame-card h2 {
  margin: 0;
  font-size: 20px;
}

.prototype-frame-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.phone-shell {
  width: 417px;
  height: 876px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 56px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.12));
  box-shadow: 0 34px 74px rgba(0, 0, 0, 0.36);
}

.phone-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 44px;
  background: #fbf4e9;
}

@media (max-width: 520px) {
  .prototype-index {
    padding: 22px 12px;
  }

  .prototype-grid {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    width: min(417px, calc(100vw - 24px));
    height: 876px;
  }
}

@media (max-width: 380px) {
  .sticky-cta {
    grid-template-columns: 1fr;
  }

  .tabbar {
    padding-right: 10px;
    padding-left: 10px;
  }
}

/* Fallback utility layer for prototype pages when Tailwind runtime is delayed */
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.place-items-center { place-items: center; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.min-w-0 { min-width: 0; }
.w-full { width: 100%; }
.w-1\/2 { width: 50%; }
.w-3\/4 { width: 75%; }
.w-2\.5 { width: 0.625rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.h-2\.5 { height: 0.625rem; }
.h-4 { height: 1rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-52 { height: 13rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.absolute { position: absolute; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.bottom-4 { bottom: 1rem; }
.left-4 { left: 1rem; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-\[18px\] { border-radius: 18px; }
.rounded-\[22px\] { border-radius: 22px; }
.rounded-\[24px\] { border-radius: 24px; }
.rounded-\[26px\] { border-radius: 26px; }
.rounded-\[28px\] { border-radius: 28px; }
.\!rounded-2xl { border-radius: 1rem !important; }
.border { border-width: 1px; border-style: solid; border-color: rgba(17, 42, 58, 0.12); }
.border-dashed { border-style: dashed; }
.border-\[rgba\(17\,42\,58\,0\.1\)\] { border-color: rgba(17, 42, 58, 0.1); }
.bg-white { background-color: #fff; }
.bg-white\/60 { background-color: rgba(255, 255, 255, 0.6); }
.bg-white\/70 { background-color: rgba(255, 255, 255, 0.7); }
.bg-white\/75 { background-color: rgba(255, 255, 255, 0.75); }
.bg-\[\#28c840\] { background-color: #28c840; }
.bg-\[\#ff6357\] { background-color: #ff6357; }
.bg-\[\#ffbd2e\] { background-color: #ffbd2e; }
.bg-\[color\:var\(--night\)\] { background-color: var(--night); }
.bg-\[color\:var\(--paper\)\] { background-color: var(--paper); }
.bg-\[color\:var\(--sky\)\] { background-color: var(--sky); }
.bg-\[rgba\(255\,255\,255\,0\.72\)\] { background-color: rgba(255, 255, 255, 0.72); }
.bg-\[linear-gradient\(180deg\,\#132f43\,\#244d58\)\] { background: linear-gradient(180deg, #132f43, #244d58); }
.text-white { color: #fff; }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-\[color\:var\(--danger\)\] { color: var(--danger); }
.text-\[color\:var\(--gold\)\] { color: var(--gold); }
.text-\[color\:var\(--ink\)\] { color: var(--ink); }
.text-\[color\:var\(--muted\)\] { color: var(--muted); }
.text-\[color\:var\(--teal\)\] { color: var(--teal); }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[15px\] { font-size: 15px; }
.font-black { font-weight: 900; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-8 { line-height: 2rem; }
.tracking-\[-0\.04em\] { letter-spacing: -0.04em; }
.tracking-\[-0\.05em\] { letter-spacing: -0.05em; }
.tracking-\[-0\.06em\] { letter-spacing: -0.06em; }
.object-cover { object-fit: cover; }
.backdrop-blur { backdrop-filter: blur(16px); }
.shadow-\[0_24px_50px_rgba\(16\,43\,60\,0\.24\)\] { box-shadow: 0 24px 50px rgba(16, 43, 60, 0.24); }
.\!min-h-8 { min-height: 2rem !important; }
.\!min-h-9 { min-height: 2.25rem !important; }
.\!min-h-10 { min-height: 2.5rem !important; }
.\!min-h-11 { min-height: 2.75rem !important; }

@keyframes prototype-pulse {
  50% { opacity: 0.45; }
}

.animate-pulse {
  animation: prototype-pulse 1.6s ease-in-out infinite;
}
