:root {
  color-scheme: light;
  --pink-100: #ffe3ec;
  --pink-200: #ffc2d6;
  --pink-300: #ff9ebf;
  --pink-400: #ff7aa9;
  --pink-500: #ff4d88;
  --pink-600: #f0266a;
  --rose-700: #b8124f;
  --plum-900: #2a0a18;
  --glass: rgba(255, 255, 255, 0.35);
  --glass-border: rgba(255, 255, 255, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family:
    "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(
    circle at top,
    #ffe9f1 0%,
    #ffd0df 45%,
    #ffc2d6 100%
  );
  color: var(--plum-900);
  min-height: 100vh;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.page {
  position: relative;
}

.page::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  z-index: 0;
}

.page::before {
  background: #ff9fc0;
  top: -200px;
  left: -200px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-badge {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-300));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(255, 77, 136, 0.35);
}

.nav-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(240, 38, 106, 0.25);
}

.button:disabled,
.button[disabled] {
  background: #d5d7df;
  border-color: #d5d7df;
  color: #7a7f90;
  cursor: default;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--pink-600), var(--pink-400));
  color: white;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  padding: 32px 0 48px;
  position: relative;
  z-index: 1;
}

.hero-card {
  padding: 32px;
  border-radius: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 60px rgba(255, 77, 136, 0.15);
  backdrop-filter: blur(16px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rose-700);
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin: 12px 0;
}

.hero p {
  font-size: 1.05rem;
  color: #5b2338;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
}

.preview {
  display: grid;
  gap: 16px;
}

.preview-card {
  border-radius: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 50px rgba(255, 77, 136, 0.15);
}

.preview-card > p {
  margin: 8px 0 18px;
}

.inspiration-gallery {
  display: grid;
  gap: 8px;
}

.inspiration-header {
  display: flex;
  align-items: center;
}

.inspiration-frame {
  position: relative;
}

.inspiration-viewport {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 22px;
  scrollbar-width: none;
  touch-action: pan-y;
}

.inspiration-viewport::-webkit-scrollbar {
  display: none;
}

.inspiration-slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
}

.inspiration-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #f1b7cc;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 40px rgba(255, 77, 136, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.inspiration-media-live .flow-canvas-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inspiration-media-live .flow-canvas {
  max-width: none;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

.inspiration-media-live .flow-helper {
  display: none;
}

.inspiration-media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.inspiration-overlay {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.72);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  text-decoration: none;
}

.inspiration-overlay:hover {
  background: rgba(20, 20, 20, 0.8);
}

.inspiration-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: absolute;
  top: 14px;
  right: 14px;
  pointer-events: auto;
}

.inspiration-controls-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.inspiration-frame:hover .inspiration-controls-overlay,
.inspiration-frame:focus-within .inspiration-controls-overlay {
  opacity: 1;
}

.inspiration-arrow,
.inspiration-play-toggle,
.inspiration-dot {
  pointer-events: auto;
}

.inspiration-arrow {
  border: 1px solid rgba(109, 49, 75, 0.3);
  background: rgba(255, 255, 255, 0.88);
  color: #6d314b;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(65, 26, 42, 0.16);
}

.inspiration-arrow:hover {
  background: rgba(255, 255, 255, 0.98);
}

.inspiration-arrow svg {
  display: block;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inspiration-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(109, 49, 75, 0.24);
  border-radius: 999px;
  padding: 8px 10px;
  box-shadow: 0 10px 20px rgba(65, 26, 42, 0.16);
}

.inspiration-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(109, 49, 75, 0.42);
  cursor: pointer;
}

.inspiration-dot.is-active {
  width: 28px;
  background: var(--pink-600);
}

.inspiration-play-toggle {
  border: 1px solid rgba(109, 49, 75, 0.3);
  background: rgba(255, 255, 255, 0.88);
  color: #6d314b;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(65, 26, 42, 0.16);
}

.inspiration-play-toggle:hover {
  background: rgba(255, 255, 255, 0.98);
}

.inspiration-play-toggle svg {
  display: block;
  fill: currentColor;
}

.inspiration-viewport.is-dragging,
.inspiration-viewport.is-dragging .inspiration-media-image {
  cursor: grabbing;
}

.inspiration-media-image {
  cursor: grab;
}

@media (hover: none), (pointer: coarse) {
  .inspiration-controls-overlay {
    opacity: 1;
  }
}

.preview-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.preview-item {
  padding: 18px;
  border-radius: 18px;
  background: white;
  text-align: center;
  font-weight: 600;
  color: var(--rose-700);
  border: 1px solid #ffd0df;
}

.section {
  padding: 32px 0 64px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  min-height: 170px;
}

.step-number {
  font-weight: 700;
  color: var(--pink-600);
}

.features {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  padding: 24px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 20px 40px rgba(255, 77, 136, 0.12);
}

.feature-card h3 {
  margin-bottom: 10px;
}

.pricing {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.55)
  );
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.pricing-card h3 {
  margin-bottom: 8px;
}

.footer {
  padding: 24px 0 48px;
  text-align: center;
  font-size: 0.9rem;
  color: #6d314b;
}

.footer p {
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-link {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(109, 49, 75, 0.25);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-link-button {
  cursor: pointer;
}

.legal-page {
  position: relative;
  z-index: 1;
  padding: 42px 0 72px;
  max-width: 820px;
  display: grid;
  gap: 18px;
}

.legal-page h1 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.legal-page h2 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.legal-page p {
  line-height: 1.6;
  color: #5b2338;
}

.legal-updated {
  color: #7c4860;
  font-size: 0.9rem;
}

.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: grid;
  justify-items: center;
}

.consent-banner__content {
  width: min(920px, 100%);
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 36px rgba(50, 11, 28, 0.2);
  display: grid;
  gap: 8px;
}

.consent-banner__content h2,
.consent-modal h2 {
  font-size: 1.15rem;
}

.consent-banner__content p,
.consent-modal p {
  color: #5b2338;
  font-size: 0.92rem;
  line-height: 1.5;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.consent-actions .button {
  flex: 1 1 190px;
}

.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(31, 10, 19, 0.55);
  backdrop-filter: blur(4px);
}

.consent-modal {
  width: min(560px, 100%);
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 48px rgba(50, 11, 28, 0.24);
  display: grid;
  gap: 12px;
}

.consent-toggle {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(109, 49, 75, 0.18);
  background: rgba(255, 255, 255, 0.8);
}

.consent-toggle span {
  display: grid;
  gap: 4px;
}

.consent-toggle small {
  color: #6d314b;
  line-height: 1.4;
}

.consent-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--pink-600);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-actions,
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-link {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

.flow {
  display: grid;
  gap: 24px;
}

.flow-login-gate {
  padding-top: 0;
}

.flow-login-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 50px rgba(255, 77, 136, 0.14);
  display: grid;
  gap: 14px;
}

.flow-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.flow-subtitle {
  margin-top: 12px;
  color: #5b2338;
}

.flow-status {
  display: grid;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.flow-pill {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose-700);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.flow-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: grid;
  gap: 16px;
}

.flow-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flow-helper {
  font-size: 0.9rem;
  color: #6d314b;
}

.flow-helper-button {
  border: none;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.relief-image-file {
  justify-self: end;
  text-align: right;
}

.flow-warning {
  color: #9c204f;
  font-weight: 600;
}

.export-spinner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-top-color: rgba(255, 255, 255, 0.95);
  animation: export-spin 0.8s linear infinite;
}

.button.ghost .export-spinner {
  border-color: rgba(109, 49, 75, 0.3);
  border-top-color: rgba(109, 49, 75, 0.85);
}

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

.upload {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed #f4a0bd;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.upload input {
  display: none;
}

.flow-canvas-wrap {
  display: grid;
  gap: 8px;
}

.flow-canvas {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  height: auto;
  border-radius: 16px;
  border: 1px solid #f1b7cc;
  background: #fff;
}

.shape-canvas {
  cursor: move;
  touch-action: none;
}

.flow-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flow-option {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid #f4a0bd;
  background: white;
  font-weight: 600;
  cursor: pointer;
}

.flow-option.active {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-300));
  color: white;
  border-color: transparent;
}

.threshold-field {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 238, 245, 0.7)
  );
  backdrop-filter: blur(6px);
}

.threshold-field span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #6d314b;
}

.threshold-field input[type="range"] {
  width: 100%;
  accent-color: var(--pink-500);
}

.flow-field input.flow-range-input,
.threshold-field input.flow-range-input {
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  accent-color: var(--pink-500);
}

.threshold-stack {
  display: grid;
  gap: 10px;
}

.color-field {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.75),
    rgba(255, 238, 245, 0.68)
  );
  backdrop-filter: blur(6px);
}

.color-field span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6d314b;
}

.color-field-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.flow-label-with-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.flow-info-button {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(109, 49, 75, 0.35);
  background: rgba(255, 255, 255, 0.78);
  color: #6d314b;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.flow-info-button:hover,
.flow-info-button:focus-visible {
  border-color: #6d314b;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.95),
    0 0 0 4px rgba(109, 49, 75, 0.2);
}

.mode-selector {
  display: inline-flex;
  gap: 6px;
  height: 34px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(109, 49, 75, 0.15);
  background: rgba(255, 255, 255, 0.7);
}

.mode-button {
  min-width: 30px;
  padding: 0 8px;
  height: 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #6d314b;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
}

.mode-button.active {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-300));
}

.mode-button.locked {
  opacity: 0.5;
}

.color-button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  padding: 0;
  border: 1px solid rgba(109, 49, 75, 0.25);
  background: transparent;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(109, 49, 75, 0.12);
}

.color-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
}

.color-action-icon {
  width: 14px;
  height: 14px;
  opacity: 0.78;
}

.color-action:hover,
.color-action:focus-visible {
  border-color: #6d314b;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.95),
    0 0 0 4px rgba(109, 49, 75, 0.32);
}

.color-action-reset {
  margin-right: 8px;
}

.color-swatch::-webkit-color-swatch-wrapper {
  padding: 0;
  border-radius: 7px;
}

.color-swatch::-webkit-color-swatch {
  border: none;
  border-radius: 7px;
}

.color-swatch.active {
  border-color: #6d314b;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.95),
    0 0 0 4px rgba(109, 49, 75, 0.32);
}

.flow-field {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.range-field {
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 238, 245, 0.7)
  );
  backdrop-filter: blur(6px);
}

.flow-field input {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #f1b7cc;
  font-size: 0.95rem;
}

.flow-field input[type="range"] {
  width: 100%;
}

.flow-summary {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: #5b2338;
}

.flow-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.premium-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(31, 10, 19, 0.55);
  backdrop-filter: blur(4px);
}

.premium-modal {
  width: min(420px, 100%);
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 48px rgba(50, 11, 28, 0.24);
  display: grid;
  gap: 12px;
}

.premium-actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-actions .button {
  flex: 1 1 180px;
}

.tippy-box[data-theme~="glass"] {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.78),
    rgba(255, 237, 244, 0.72)
  );
  box-shadow: 0 16px 28px rgba(50, 11, 28, 0.18);
  color: #5b2338;
  backdrop-filter: blur(12px);
}

.tippy-box[data-theme~="glass"] .tippy-content {
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
}

.tippy-box[data-theme~="glass"] .tooltip-rich-list {
  display: grid;
  gap: 6px;
}

.tippy-box[data-theme~="glass"] .tooltip-rich-list p {
  margin: 0;
  font-weight: 500;
}

.tippy-box[data-theme~="glass"] .tooltip-rich-list strong {
  font-weight: 700;
  color: #4b1228;
}

@media (max-width: 720px) {
  .flow-header {
    align-items: flex-start;
  }

  .flow-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Override global link styles for Google maps links to underline on hover */
a[href*="google.com/maps"] {
  text-decoration: underline;
}
