/* Kinda Camping — bright marketing site */

:root {
  --mkt-bg: #fff8f3;
  --mkt-bg-alt: #f0f9ff;
  --mkt-bg-card: #ffffff;
  --mkt-text: #2a4f58;
  --mkt-muted: #3d6670;
  --mkt-heading: #c45f45;
  --mkt-heading-alt: #1f7a6e;
  --mkt-border: rgba(42, 79, 88, 0.12);
  --mkt-border-strong: rgba(42, 79, 88, 0.2);
  --mkt-coral: #e07a5f;
  --mkt-coral-dark: #c45f45;
  --mkt-coral-soft: #fff0eb;
  --mkt-gold: #e9a319;
  --mkt-gold-light: #fff4d6;
  --mkt-teal: #2a9d8f;
  --mkt-teal-soft: #e6f7f4;
  --mkt-green: #40916c;
  --mkt-purple: #9b5de5;
  --mkt-sky: #7dd3fc;
  --mkt-peach: #ffe8d6;
  --mkt-mint: #d8f3dc;
  --mkt-lavender: #f3e8ff;
  --mkt-radius: 18px;
  --mkt-radius-sm: 12px;
  --mkt-shadow: 0 4px 24px rgba(42, 79, 88, 0.07);
  --mkt-shadow-lg: 0 12px 40px rgba(42, 79, 88, 0.1);
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --font-display-weight: 500;
  --font-display-weight-emphasis: 600;
  --header-h: 4rem;
}

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

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

body.mkt-page {
  font-family: var(--font-body);
  background: var(--mkt-bg);
  color: var(--mkt-text);
  line-height: 1.65;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* Background & decorative blobs */
.mkt-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 60% at 10% 0%, rgba(125, 211, 252, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 15%, rgba(233, 196, 106, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 60% 45% at 80% 90%, rgba(64, 145, 108, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, #f0f9ff 0%, var(--mkt-bg) 35%, #fff5eb 100%);
}

.mkt-deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}

.mkt-deco-blob-1 { width: 280px; height: 280px; top: 8%; left: -5%; background: #bae6fd; }
.mkt-deco-blob-2 { width: 220px; height: 220px; top: 40%; right: -3%; background: #fde68a; }
.mkt-deco-blob-3 { width: 180px; height: 180px; bottom: 10%; left: 20%; background: #a7f3d0; }

.mkt-wave {
  height: 48px;
  margin: -1rem 0 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'%3E%3Cpath d='M0 24 Q300 0 600 24 T1200 24 V48 H0 Z' fill='%23ffffff' opacity='0.7'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

/* Header */
.mkt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.65rem 1.25rem;
  padding-top: max(0.65rem, env(safe-area-inset-top));
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mkt-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mkt-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--mkt-text);
  font-family: var(--font-display);
  font-weight: var(--font-display-weight-emphasis);
  font-size: 1.2rem;
}

.mkt-brand img { border-radius: 10px; box-shadow: var(--mkt-shadow); }

.mkt-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.35rem;
  background: #fff;
  border: 1px solid var(--mkt-border-strong);
  border-radius: var(--mkt-radius-sm);
  color: var(--mkt-text);
  cursor: pointer;
  box-shadow: var(--mkt-shadow);
}

.mkt-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--mkt-border);
  box-shadow: var(--mkt-shadow);
}

.mkt-nav.is-open { display: flex; }

.mkt-nav a {
  color: var(--mkt-heading-alt);
  text-decoration: none;
  padding: 0.65rem 0.75rem;
  border-radius: var(--mkt-radius-sm);
  font-weight: 600;
}

.mkt-nav a:hover, .mkt-nav a.active {
  color: var(--mkt-coral-dark);
  background: var(--mkt-gold-light);
}

@media (min-width: 900px) {
  .mkt-nav-toggle { display: none; }
  .mkt-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 0.15rem;
  }
  .mkt-nav a { padding: 0.45rem 0.75rem; font-size: 0.95rem; }
}

/* Buttons */
.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: var(--font-display-weight-emphasis);
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.mkt-btn:hover { transform: translateY(-2px); }

.mkt-btn-primary {
  background: linear-gradient(135deg, var(--mkt-coral), #f4a261);
  color: #fff;
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.4);
}

.mkt-btn-primary:hover { box-shadow: 0 8px 28px rgba(224, 122, 95, 0.5); }

.mkt-btn-secondary {
  background: #fff;
  color: var(--mkt-heading-alt);
  border: 2px solid rgba(42, 157, 143, 0.45);
  box-shadow: var(--mkt-shadow);
}

.mkt-btn-secondary:hover {
  background: var(--mkt-teal-soft);
  border-color: var(--mkt-teal);
}

.mkt-btn-sm { min-height: 40px; padding: 0.5rem 1rem; font-size: 0.9rem; }

.mkt-hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

.mkt-main { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem 3rem; }

.mkt-section { padding: 3.5rem 0; scroll-margin-top: calc(var(--header-h) + 1rem); }

.mkt-section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }

.mkt-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mkt-teal);
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(42, 157, 143, 0.1);
  border-radius: 999px;
}

.mkt-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: var(--font-display-weight-emphasis);
  line-height: 1.25;
  color: var(--mkt-heading);
  margin-bottom: 0.65rem;
}

.mkt-section-head p {
  color: var(--mkt-text);
  font-size: 1.05rem;
  line-height: 1.65;
}

.mkt-section-head a {
  color: var(--mkt-teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Hero */
.mkt-hero { padding: 2rem 0 3rem; }

.mkt-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 900px) {
  .mkt-hero-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .mkt-hero-copy { text-align: left; }
  .mkt-hero-cta { justify-content: flex-start; }
  .mkt-demo-hint { margin-left: 0; margin-right: 0; }
}

.mkt-hero-copy { text-align: center; }

.mkt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.25rem;
  background: var(--mkt-gold-light);
  border: 1px solid #fcd34d;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #92400e;
}

.mkt-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 7vw, 3.5rem);
  font-weight: var(--font-display-weight-emphasis);
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--mkt-coral-dark) 0%, var(--mkt-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mkt-hero-lead {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--mkt-text);
  max-width: 520px;
  line-height: 1.7;
}

@media (min-width: 900px) {
  .mkt-hero-lead { margin: 0; }
}

.mkt-hero-art {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

/* Phone mockup stack — ::before reserves height for position:absolute phones + captions */
.mkt-phone-stack {
  position: relative;
  width: min(85vw, 310px);
  margin: 0 auto;
}

.mkt-phone-stack::before {
  content: "";
  display: block;
  padding-top: calc(100% * 0.52 * 800 / 430 + 3.5rem);
}

.mkt-phone {
  position: absolute;
  margin: 0;
  width: 46%;
  transition: transform 0.25s ease;
}

.mkt-phone-screen {
  background: #1a2332;
  border-radius: 22px;
  padding: 8px;
  box-shadow: var(--mkt-shadow-lg), 0 0 0 1px rgba(42, 157, 143, 0.2);
  overflow: hidden;
  aspect-ratio: 430 / 800;
}

.mkt-phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
}

.mkt-phone-cap {
  margin-top: 0.45rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mkt-heading-alt);
}

.mkt-phone-back {
  left: 0;
  top: 12%;
  transform: rotate(-8deg);
  z-index: 1;
}

.mkt-phone-front {
  left: 27%;
  top: 0;
  width: 52%;
  z-index: 3;
}

.mkt-phone-side {
  right: 0;
  top: 14%;
  transform: rotate(7deg);
  z-index: 2;
}

@media (min-width: 900px) {
  .mkt-phone-stack {
    width: 480px;
  }
  .mkt-phone-stack::before {
    padding-top: calc(100% * 0.52 * 800 / 430 + 3.25rem);
  }
  .mkt-phone-back:hover { transform: rotate(-8deg) translateY(-6px); }
  .mkt-phone-front:hover { transform: translateY(-8px); }
  .mkt-phone-side:hover { transform: rotate(7deg) translateY(-6px); }
}

.mkt-hero-illustration {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--mkt-radius);
  box-shadow: var(--mkt-shadow-lg);
}

.mkt-float {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.35rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--mkt-shadow);
  border: 2px solid var(--mkt-gold-light);
  animation: mkt-float 4s ease-in-out infinite;
}

.mkt-float-1 { top: 8%; left: -4%; animation-delay: 0s; }
.mkt-float-2 { top: 20%; right: -6%; animation-delay: 0.8s; }
.mkt-float-3 { bottom: 28%; left: -8%; animation-delay: 1.6s; }
.mkt-float-4 { bottom: 12%; right: 2%; animation-delay: 2.4s; }

@keyframes mkt-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.mkt-hero-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 0 1.25rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 899px) {
  /* —— Compact homepage: less scroll on ~375–430px —— */
  .mkt-hero {
    padding: 1.25rem 0 1.25rem;
  }
  .mkt-hero-grid { gap: 1.25rem; }
  .mkt-hero-art { margin-top: 0; }
  .mkt-hero-badge { margin-bottom: 0.75rem; }
  .mkt-hero h1 { margin-bottom: 0.65rem; }
  .mkt-hero-cta { margin-top: 1.25rem; }
  .mkt-hero-lead { line-height: 1.6; }

  /* Hero phones — fade cycle through all three screens */
  .mkt-phone-stack.mkt-fade-cycle .mkt-phone-back,
  .mkt-phone-stack.mkt-fade-cycle .mkt-phone-side {
    display: block;
  }

  .mkt-phone-stack.mkt-fade-cycle .mkt-phone {
    left: 50%;
    right: auto;
    top: 0;
    width: 100%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.85s ease;
    z-index: 1;
    pointer-events: none;
  }

  .mkt-phone-stack.mkt-fade-cycle .mkt-phone.is-fade-active {
    opacity: 1;
    z-index: 2;
  }

  .mkt-phone-stack.mkt-fade-cycle .mkt-phone-back,
  .mkt-phone-stack.mkt-fade-cycle .mkt-phone-side {
    transform: translateX(-50%);
  }

  /* Fallback without JS: front phone only */
  .mkt-phone-stack:not(.mkt-fade-cycle) .mkt-phone-back,
  .mkt-phone-stack:not(.mkt-fade-cycle) .mkt-phone-side { display: none; }
  .mkt-phone-stack {
    width: min(68vw, 210px);
  }
  .mkt-phone-stack::before {
    padding-top: calc(100% * 800 / 430 + 2rem);
  }
  .mkt-phone-front {
    left: 50%;
    right: auto;
    top: 0;
    width: 100%;
    transform: translateX(-50%);
  }

  /* Feature pills duplicate the gallery — hide on small screens */
  .mkt-hero-icons { display: none; }

  .mkt-wave {
    height: 32px;
    margin-top: -0.5rem;
  }

  .mkt-section {
    padding: 2rem 0;
  }
  .mkt-section-head {
    margin-bottom: 1.5rem;
  }

  .mkt-cta-band {
    padding: 2rem 1.25rem;
    margin-top: 1rem;
  }
}

.mkt-icon-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mkt-heading-alt);
  background: #fff;
  border: 1px solid rgba(42, 157, 143, 0.25);
  border-radius: 999px;
  box-shadow: var(--mkt-shadow);
}

/* Screenshot gallery */
.mkt-section-screens {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, var(--mkt-teal-soft) 100%);
  border-radius: var(--mkt-radius);
  margin: 0 0 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.mkt-screens-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mkt-screen-card {
  margin: 0;
  text-align: center;
}

.mkt-screen-frame {
  background: linear-gradient(145deg, #fff, var(--mkt-peach));
  border-radius: 24px;
  padding: 10px;
  box-shadow: var(--mkt-shadow-lg);
  border: 2px solid rgba(224, 122, 95, 0.2);
  aspect-ratio: 430 / 800;
  overflow: hidden;
  max-height: 420px;
  margin: 0 auto;
}

.mkt-screen-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.mkt-screen-card figcaption {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--mkt-text);
  line-height: 1.45;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.mkt-screen-emoji {
  display: inline-block;
  margin-right: 0.2rem;
}

.mkt-screen-card-1 .mkt-screen-frame { border-color: rgba(224, 122, 95, 0.35); background: linear-gradient(145deg, #fff, var(--mkt-peach)); }
.mkt-screen-card-2 .mkt-screen-frame { border-color: rgba(42, 157, 143, 0.35); background: linear-gradient(145deg, #fff, var(--mkt-mint)); }
.mkt-screen-card-3 .mkt-screen-frame { border-color: rgba(155, 93, 229, 0.3); background: linear-gradient(145deg, #fff, var(--mkt-lavender)); }

.mkt-screens-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Tab bars — mobile homepage compact navigation */
.mkt-screen-tabs,
.mkt-tab-bar {
  display: none;
}

.mkt-section-lead-mobile { display: none; }

.mkt-tab {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.55rem 0.65rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: var(--font-display-weight-emphasis);
  color: var(--mkt-heading-alt);
  background: #fff;
  border: 1px solid rgba(42, 157, 143, 0.25);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.mkt-tab-sm {
  font-size: 0.78rem;
  padding: 0.45rem 0.5rem;
}

.mkt-tab.is-active,
.mkt-screen-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--mkt-coral), var(--mkt-teal));
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
}

.mkt-screen-tab {
  flex: 1 1 0;
  padding: 0.6rem 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: var(--font-display-weight-emphasis);
  color: var(--mkt-heading-alt);
  background: #fff;
  border: 1px solid rgba(42, 157, 143, 0.25);
  border-radius: 999px;
  cursor: pointer;
}

.mkt-tab-bar-learn,
.mkt-tab-bar-features,
.mkt-screen-tabs {
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mkt-tabbed-block {
  position: relative;
}

@media (min-width: 900px) {
  .mkt-feature-group-title-desktop { display: block; }
  .mkt-tabbed-block .mkt-tab-panel[hidden] {
    display: block !important;
  }
  .mkt-screens-gallery.mkt-fade-cycle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 1000px;
  }
  .mkt-screens-gallery.mkt-fade-cycle .mkt-screen-card {
    position: static;
    opacity: 1;
    pointer-events: auto;
    display: block !important;
  }
  .mkt-phone-stack.mkt-fade-cycle .mkt-phone {
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.25s ease;
  }
  .mkt-phone-stack.mkt-fade-cycle .mkt-phone-back {
    left: 0;
    top: 12%;
    width: 46%;
    transform: rotate(-8deg);
  }
  .mkt-phone-stack.mkt-fade-cycle .mkt-phone-front {
    left: 27%;
    top: 0;
    width: 52%;
    transform: none;
  }
  .mkt-phone-stack.mkt-fade-cycle .mkt-phone-side {
    right: 0;
    left: auto;
    top: 14%;
    width: 46%;
    transform: rotate(7deg);
  }
}

@media (max-width: 899px) {
  .mkt-section-lead-desktop { display: none; }
  .mkt-section-lead-mobile {
    display: block;
    color: var(--mkt-text);
    font-size: 0.95rem;
  }

  /* Screenshot tabs — fade cycle, one visible at a time */
  .mkt-screen-tabs {
    display: flex;
    margin: 0 auto 1rem;
    max-width: 360px;
    padding: 0 0.25rem;
  }

  .mkt-screens-gallery.mkt-fade-cycle {
    display: block;
    position: relative;
    max-width: 280px;
    margin: 0 auto;
    overflow: visible;
    padding: 0;
    min-height: 0;
  }

  .mkt-screens-gallery.mkt-fade-cycle .mkt-screen-card {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.85s ease;
    pointer-events: none;
  }

  .mkt-screens-gallery.mkt-fade-cycle .mkt-screen-card.is-fade-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
  }

  .mkt-screens-gallery:not(.mkt-fade-cycle) .mkt-screen-card,
  .mkt-screens-gallery .mkt-screen-card {
    display: none;
  }

  .mkt-screens-gallery .mkt-screen-card.is-fade-active,
  .mkt-screens-gallery .mkt-screen-card.is-active {
    display: block;
  }

  .mkt-screen-frame {
    max-height: 340px;
  }

  .mkt-screens-cta {
    margin-top: 1rem;
  }

  /* Learn hub: What / Why / How / Features / Pricing */
  .mkt-tab-bar-learn {
    display: flex;
    position: sticky;
    top: calc(var(--header-h) + 0.35rem);
    z-index: 50;
    margin: 0 -0.25rem 0.75rem;
    padding: 0.5rem 0.25rem;
    background: rgba(255, 248, 243, 0.92);
    backdrop-filter: blur(10px);
    border-radius: var(--mkt-radius-sm);
    box-shadow: 0 2px 12px rgba(42, 79, 88, 0.06);
  }

  .mkt-tabbed-block > .mkt-section[hidden] {
    display: none !important;
  }

  .mkt-tabbed-block > .mkt-section {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
  }

  .mkt-tabbed-block .mkt-section-head {
    margin-bottom: 1rem;
  }

  .mkt-tabbed-block .mkt-section-head h2 {
    font-size: 1.45rem;
  }

  /* Feature sub-tabs */
  .mkt-tab-bar-features {
    display: flex;
    margin-bottom: 1rem;
  }

  .mkt-feature-group-title-desktop {
    display: none;
  }

  .mkt-feature-groups .mkt-feature-group[hidden] {
    display: none !important;
  }

  .mkt-feature-groups {
    gap: 0;
  }

  .mkt-grid-compact {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .mkt-grid-compact .mkt-card {
    padding: 1rem 1.1rem;
  }

  /* Pricing — all plans visible in compact grid */
  .mkt-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: none;
    margin: 0;
  }

  .mkt-pricing .mkt-price-card {
    padding: 1rem;
  }

  .mkt-pricing .mkt-price {
    font-size: 1.5rem;
  }

  .mkt-pricing .mkt-price-card ul {
    font-size: 0.82rem;
    margin: 0.65rem 0;
  }

  .mkt-pricing .mkt-btn {
    min-height: 40px;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .mkt-pricing .mkt-price-card.featured {
    grid-column: 1 / -1;
  }

  .mkt-why-list {
    gap: 0.65rem;
  }

  .mkt-why-item {
    padding: 1rem 1.1rem;
  }

  .mkt-steps {
    gap: 0.75rem;
  }

  .mkt-step {
    padding: 1.25rem 1rem;
  }

  .mkt-section-share {
    padding-top: 0.5rem;
  }

  .mkt-share-grid {
    grid-template-columns: 1fr;
  }
}

.mkt-demo-hint {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid #fcd34d;
  border-radius: var(--mkt-radius-sm);
  font-size: 0.92rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  box-shadow: var(--mkt-shadow);
}

.mkt-demo-hint code {
  background: var(--mkt-gold-light);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.88em;
}

.mkt-demo-hint a { color: var(--mkt-coral-dark); font-weight: 700; }

/* Cards & grids */
.mkt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.mkt-card {
  background: linear-gradient(160deg, #fff 0%, var(--mkt-peach) 120%);
  border: 1px solid rgba(224, 122, 95, 0.15);
  border-radius: var(--mkt-radius);
  padding: 1.5rem;
  box-shadow: var(--mkt-shadow);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.mkt-grid .mkt-card:nth-child(3n+2) {
  background: linear-gradient(160deg, #fff 0%, var(--mkt-teal-soft) 120%);
  border-color: rgba(42, 157, 143, 0.15);
}

.mkt-grid .mkt-card:nth-child(3n) {
  background: linear-gradient(160deg, #fff 0%, var(--mkt-lavender) 120%);
  border-color: rgba(155, 93, 229, 0.12);
}

.mkt-card:hover {
  border-color: rgba(224, 122, 95, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--mkt-shadow-lg);
}

.mkt-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  border-radius: 14px;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, rgba(224, 122, 95, 0.12), rgba(233, 196, 106, 0.2));
}

.mkt-card:nth-child(3n+2) .mkt-card-icon {
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.12), rgba(125, 211, 252, 0.25));
}

.mkt-card:nth-child(3n) .mkt-card-icon {
  background: linear-gradient(135deg, rgba(155, 93, 229, 0.1), rgba(244, 162, 97, 0.15));
}

.mkt-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: var(--font-display-weight-emphasis);
  margin-bottom: 0.5rem;
  color: var(--mkt-heading-alt);
}

.mkt-card p { color: var(--mkt-text); font-size: 0.95rem; }

.mkt-why-list { display: grid; gap: 1rem; max-width: 720px; margin: 0 auto; }

.mkt-why-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--mkt-peach);
  border-radius: var(--mkt-radius);
  border-left: 5px solid var(--mkt-coral);
  box-shadow: var(--mkt-shadow);
}

.mkt-why-item:nth-child(2) { background: var(--mkt-gold-light); border-left-color: var(--mkt-gold); }
.mkt-why-item:nth-child(3) { background: var(--mkt-mint); border-left-color: var(--mkt-teal); }
.mkt-why-item:nth-child(4) { background: var(--mkt-lavender); border-left-color: var(--mkt-purple); }
.mkt-why-item:nth-child(5) { background: var(--mkt-teal-soft); border-left-color: var(--mkt-green); }

.mkt-why-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--font-display-weight-emphasis);
  margin-bottom: 0.25rem;
  color: var(--mkt-heading);
}
.mkt-why-item p { color: var(--mkt-text); font-size: 0.95rem; margin: 0; }

.mkt-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.mkt-step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: linear-gradient(180deg, #fff 0%, var(--mkt-teal-soft) 100%);
  border-radius: var(--mkt-radius);
  border: 1px solid rgba(42, 157, 143, 0.2);
  box-shadow: var(--mkt-shadow);
}

.mkt-step h3 {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight-emphasis);
  margin-bottom: 0.5rem;
  color: var(--mkt-heading-alt);
}
.mkt-step p { color: var(--mkt-text); font-size: 0.95rem; }

.mkt-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: var(--font-display-weight-emphasis);
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--mkt-coral), var(--mkt-gold));
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(224, 122, 95, 0.35);
}

/* Pricing */
.mkt-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.mkt-price-card {
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--mkt-shadow);
}

.mkt-price-card.featured {
  border-color: var(--mkt-gold);
  box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.25), var(--mkt-shadow-lg);
  background: linear-gradient(180deg, #fffbeb 0%, #fff 40%);
}

.mkt-price-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: var(--font-display-weight-emphasis); }

.mkt-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: var(--font-display-weight-emphasis);
  color: var(--mkt-coral-dark);
  margin: 0.5rem 0;
}

.mkt-price-card ul {
  list-style: none;
  margin: 1rem 0;
  flex: 1;
  font-size: 0.9rem;
  color: var(--mkt-text);
}

.mkt-price-card li { padding: 0.35rem 0; padding-left: 1.25rem; position: relative; }
.mkt-price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--mkt-green); font-weight: 700; }

.mkt-price-card .mkt-btn { width: 100%; margin-top: auto; }

.mkt-trial-banner {
  text-align: center;
  margin-top: 2rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--mkt-peach), var(--mkt-mint));
  border-radius: var(--mkt-radius);
  border: 1px dashed rgba(224, 122, 95, 0.35);
  color: var(--mkt-text);
}

/* FAQ */
.mkt-faq { max-width: 720px; margin: 0 auto; }

.mkt-faq-roll {
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  background: #fff;
  box-shadow: var(--mkt-shadow);
  overflow: hidden;
}

.mkt-faq-roll-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.mkt-faq-roll-summary::-webkit-details-marker { display: none; }

.mkt-faq-roll-summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mkt-coral);
  line-height: 1;
}

.mkt-faq-roll[open] .mkt-faq-roll-summary::after {
  content: "−";
}

.mkt-faq-roll-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: var(--font-display-weight-emphasis);
  color: var(--mkt-heading);
  width: 100%;
}

@media (min-width: 480px) {
  .mkt-faq-roll-title { width: auto; flex: 1; }
}

.mkt-faq-roll-hint {
  font-size: 0.85rem;
  color: var(--mkt-text);
  opacity: 0.75;
}

.mkt-faq-roll[open] .mkt-faq-roll-hint { display: none; }

.mkt-faq-roll .mkt-faq {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--mkt-border);
}

.mkt-faq-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.mkt-faq-section .mkt-section-head {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .mkt-fade-cycle .mkt-phone,
  .mkt-fade-cycle .mkt-screen-card {
    transition: none;
  }
}

.faq-item {
  border-bottom: 1px solid var(--mkt-border);
  background: #fff;
  margin-bottom: 0.5rem;
  border-radius: var(--mkt-radius-sm);
  padding: 0 1rem;
  box-shadow: 0 1px 4px rgba(26, 46, 53, 0.04);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  background: none;
  border: none;
  color: var(--mkt-heading-alt);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: var(--font-display-weight-emphasis);
  text-align: left;
  cursor: pointer;
}

.faq-q::after { content: "+"; font-size: 1.35rem; color: var(--mkt-coral); flex-shrink: 0; }
.faq-item.is-open .faq-q::after { content: "−"; }

.faq-a {
  display: none;
  padding: 0 0 1.1rem;
  color: var(--mkt-text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-a a { color: var(--mkt-coral-dark); font-weight: 700; }
.faq-item.is-open .faq-a { display: block; }

.mkt-cta-band {
  text-align: center;
  padding: 3rem 1.5rem;
  margin-top: 2rem;
  background: linear-gradient(135deg, #fff5eb, #e0f2fe);
  border-radius: var(--mkt-radius);
  border: 1px solid var(--mkt-border);
  box-shadow: var(--mkt-shadow-lg);
}

.mkt-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: var(--font-display-weight-emphasis);
  margin-bottom: 0.75rem;
  color: var(--mkt-heading);
}

.mkt-cta-band p { color: var(--mkt-text); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

.mkt-cta-band .mkt-hero-cta { justify-content: center; }

/* Footer */
.mkt-footer {
  border-top: 1px solid var(--mkt-border);
  padding: 2.5rem 1.25rem 2rem;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.6);
}

.mkt-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.mkt-footer-brand p { color: var(--mkt-text); font-size: 0.9rem; margin-top: 0.35rem; }
.mkt-footer-credit { font-size: 0.82rem !important; }

.mkt-footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; }

.mkt-footer-links a { color: var(--mkt-heading-alt); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.mkt-footer-links a:hover { color: var(--mkt-coral-dark); }

.mkt-copy { text-align: center; color: var(--mkt-text); font-size: 0.85rem; margin-top: 2rem; opacity: 0.85; }

/* Auth forms */
.mkt-auth-wrap {
  min-height: calc(100dvh - var(--header-h) - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.form-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--mkt-shadow-lg);
}

.form-card h1 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: var(--font-display-weight-emphasis);
  margin-bottom: 0.35rem;
  color: var(--mkt-heading);
}
.form-card .text-muted { color: var(--mkt-text); margin-bottom: 1.25rem; font-size: 0.95rem; }

.form-card label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--mkt-heading-alt);
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-size: 16px;
  font-family: var(--font-body);
  background: #fff;
  border: 1px solid var(--mkt-border-strong);
  border-radius: var(--mkt-radius-sm);
  color: var(--mkt-text);
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: 2px solid var(--mkt-teal);
  outline-offset: 1px;
  border-color: var(--mkt-teal);
}

.form-card .mkt-btn { width: 100%; margin-top: 1.25rem; border: none; }
.form-card p { margin-top: 1.25rem; font-size: 0.95rem; color: var(--mkt-text); }
.form-card a { color: var(--mkt-coral-dark); font-weight: 700; }

.mkt-feature-groups { display: flex; flex-direction: column; gap: 2rem; }
.mkt-feature-group-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--mkt-teal);
}
.mkt-grid-compact { gap: 0.75rem; }

.mkt-app-hub { padding-top: 2rem; max-width: 720px; margin: 0 auto; }
.mkt-app-title { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 0.35rem; }
.mkt-app-greeting { margin-bottom: 1.5rem; }
.mkt-app-summary { margin: -0.75rem 0 1.25rem; font-size: 0.95rem; }
.mkt-app-note { margin-top: 1rem; font-size: 0.88rem; max-width: 42rem; }
.mkt-app-empty { text-align: center; padding: 2rem; }
.mkt-trip-link { text-decoration: none; color: inherit; transition: border-color 0.15s, box-shadow 0.15s; }
.mkt-trip-link:hover { border-color: var(--mkt-coral); box-shadow: var(--mkt-shadow-lg); }
.mkt-trip-link-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.35rem 0.75rem; margin-bottom: 0.35rem; }
.mkt-trip-link-head h3 { margin: 0; font-size: 1.1rem; }
.mkt-trip-role {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 0.15rem 0.45rem; border-radius: 999px; border: 1px solid var(--mkt-border);
}
.mkt-trip-role-organizer { color: #92400e; background: var(--mkt-gold-light); border-color: #fcd34d; }
.mkt-trip-role-member { color: var(--mkt-muted); }
.mkt-trip-login-hint { margin: 0.35rem 0 0; font-size: 0.85rem; color: var(--mkt-muted); }
.mkt-trip-login-hint code { font-size: 0.82rem; background: var(--mkt-gold-light); padding: 0.1rem 0.3rem; border-radius: 4px; }
.mkt-app-actions { margin-top: 1.5rem; }

.mkt-auth-wrap-split {
  display: grid; gap: 1rem; max-width: 920px; margin: 0 auto;
}
@media (min-width: 768px) {
  .mkt-auth-wrap-split { grid-template-columns: 1fr 1fr; align-items: start; }
}
.mkt-auth-aside { margin: 0; }
.mkt-auth-aside-title { font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 0.65rem; }
.mkt-auth-aside code { font-size: 0.85em; background: var(--mkt-gold-light); padding: 0.1rem 0.3rem; border-radius: 4px; }
.error { color: #b91c1c; margin-bottom: 0.75rem; font-weight: 600; }
.success { color: #15803d; font-weight: 600; margin-bottom: 0.75rem; }
.text-muted { color: var(--mkt-text); }

.mkt-check {
  display: flex; align-items: flex-start; gap: 0.5rem;
  margin: 1rem 0 0; font-size: 0.9rem; color: var(--mkt-muted); line-height: 1.45;
}
.mkt-check input { margin-top: 0.2rem; flex-shrink: 0; }
.mkt-check a { color: var(--mkt-coral-dark); font-weight: 700; }

.mkt-legal { max-width: 720px; margin: 0 auto; }
.mkt-legal h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.25rem; }
.mkt-legal-body h2 { font-family: var(--font-display); font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }
.mkt-legal-body ul { padding-left: 1.25rem; margin: 0.5rem 0 1rem; }
.mkt-legal-body li { margin-bottom: 0.35rem; }
.mkt-legal-body p { margin: 0.75rem 0; line-height: 1.55; color: var(--mkt-text); }

.mkt-section-share { padding-top: 1rem; }
.mkt-share-grid { display: grid; gap: 1rem; max-width: 720px; margin: 0 auto; }
@media (min-width: 640px) { .mkt-share-grid { grid-template-columns: 1fr 1fr; } }
.mkt-share-card h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.mkt-share-url { font-size: 0.9rem; margin: 0.5rem 0 1rem; word-break: break-word; }
.mkt-share-url code { font-size: 0.82rem; background: var(--mkt-gold-light); padding: 0.1rem 0.3rem; border-radius: 4px; }
.mkt-copy-btn { width: 100%; }

.mkt-app-util { margin-top: 2rem; font-size: 0.92rem; text-align: center; color: var(--mkt-muted); }
.mkt-app-util a { color: var(--mkt-coral-dark); font-weight: 700; text-decoration: none; }
.mkt-app-util a:hover { text-decoration: underline; }
.mkt-app-back { margin-bottom: 0.5rem; font-size: 0.9rem; }
.mkt-app-back a { color: var(--mkt-coral-dark); font-weight: 700; text-decoration: none; }

.mkt-feedback-card textarea,
.mkt-feedback-card select { width: 100%; margin-bottom: 0.75rem; }
.mkt-feedback-form label { display: block; font-weight: 700; margin: 0.75rem 0 0.35rem; }
.mkt-honeypot { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.mkt-flash { padding: 0.75rem 1rem; border-radius: var(--mkt-radius-sm); margin-bottom: 1rem; }
.mkt-flash-ok { background: #dcfce7; border: 1px solid #86efac; color: #166534; }
.mkt-flash-error { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }
.mkt-support-card { margin-top: 1rem; }
.mkt-support-title { font-family: var(--font-display); font-size: 1.1rem; margin: 0 0 0.5rem; }
.mkt-feedback-trip { margin: 0 0 0.75rem; font-size: 0.9rem; }

@media (prefers-reduced-motion: reduce) {
  .mkt-float { animation: none; }
  .mkt-btn:hover, .mkt-card:hover { transform: none; }
}
