:root {
  --bg: #fbf6ff;
  --bg-warm: #fff3e8;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --surface-soft: #fff8f3;
  --surface-blue: #edf5ff;
  --ink: #241830;
  --ink-soft: #3b2f4a;
  --muted: #71667d;
  --line: rgba(95, 76, 124, 0.16);
  --line-strong: rgba(95, 76, 124, 0.26);
  --navy: #16213e;
  --navy-2: #24345f;
  --accent: #8f6cff;
  --accent-dark: #6546d7;
  --violet: #9b72ff;
  --sky: #79b8ff;
  --warm: #ffc46b;
  --peach: #ffd5ba;
  --coral: #ff7f72;
  --lavender: #d9ccff;
  --radius-sm: 14px;
  --radius: 18px;
  --radius-lg: 26px;
  --twilight: linear-gradient(135deg, #fff9f2 0%, #f4ecff 46%, #edf6ff 100%);
  --twilight-strong: linear-gradient(135deg, #fff5ea 0%, #eee5ff 48%, #edf7ff 100%);
  --sunset: linear-gradient(135deg, #ffb56b 0%, #ff7f72 42%, #9b72ff 100%);
  --app-gradient: linear-gradient(135deg, #8f6cff 0%, #79b8ff 52%, #ffc46b 100%);
  --shadow-sm: 0 8px 22px rgba(61, 38, 89, 0.08);
  --shadow: 0 18px 46px rgba(61, 38, 89, 0.12);
  --shadow-strong: 0 22px 64px rgba(61, 38, 89, 0.16);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 196, 107, 0.2), transparent 20rem),
    radial-gradient(circle at 88% 12%, rgba(143, 108, 255, 0.13), transparent 24rem),
    radial-gradient(circle at 70% 72%, rgba(121, 184, 255, 0.12), transparent 25rem),
    linear-gradient(180deg, #fff8f1 0%, #f7f1ff 44%, #f2f8ff 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 1px, transparent 1.6px),
    linear-gradient(rgba(95, 76, 124, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 76, 124, 0.04) 1px, transparent 1px);
  background-position: 0 0, 0 0, 0 0;
  background-size: 96px 96px, 44px 44px, 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 58%, rgba(255, 255, 255, 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 76%, rgba(255, 255, 255, 0.65) 0 1px, transparent 2px);
  background-size: 42px 42px;
}

a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent-dark);
}

a:focus-visible {
  outline: 3px solid rgba(255, 127, 114, 0.5);
  outline-offset: 4px;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.9rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.55rem);
  font-weight: 900;
}

h3 {
  font-size: 1.15rem;
  font-weight: 900;
}

.site-header,
.site-footer,
.hero,
.section,
.page-main {
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 60px;
  margin-top: 14px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 40px rgba(61, 38, 89, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px 0 4px;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(143, 108, 255, 0.25);
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: #5c5268;
  font-size: 0.91rem;
  font-weight: 850;
  text-decoration: none;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.eyebrow,
.badge {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  padding: 4px 9px;
  border: 1px solid rgba(143, 108, 255, 0.28);
  border-radius: 999px;
  background: rgba(143, 108, 255, 0.1);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.badge-soft {
  border-color: rgba(255, 127, 114, 0.28);
  background: rgba(255, 127, 114, 0.1);
  color: #b34840;
}

.status {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid rgba(102, 112, 133, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #7a4b0d;
  font-size: 0.76rem;
  font-weight: 900;
}

.status-live {
  border-color: rgba(143, 108, 255, 0.34);
  background: rgba(143, 108, 255, 0.12);
  color: #4b2fc0;
}

.button,
.card-link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(61, 38, 89, 0.16);
  cursor: pointer;
  position: relative;
  z-index: 4;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.card-link:hover {
  background: #2a2051;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(61, 38, 89, 0.2);
}

.button:focus-visible,
.card-link:focus-visible,
.link-grid a:focus-visible,
.email-card:focus-visible,
nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(255, 127, 114, 0.5);
  outline-offset: 4px;
}

.button-primary {
  background: var(--sunset);
  color: #ffffff;
}

.button-primary:hover {
  background: linear-gradient(135deg, #ff9d68, #ff716b 42%, #8062ff 100%);
  color: #ffffff;
}

.button-secondary {
  border-color: rgba(143, 108, 255, 0.24);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.button-secondary:hover {
  background: #ffffff;
  color: var(--ink);
}

.button-disabled,
.button-disabled:hover {
  cursor: default;
  transform: none;
}

.button-note {
  margin-left: 6px;
  font-size: 0.78rem;
  opacity: 0.78;
}

.button-light {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button-light:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.button-commerce {
  background: linear-gradient(135deg, #ffb15f 0%, #ff7f72 48%, #8f6cff 100%);
  color: #ffffff;
}

.button-commerce:hover {
  background: linear-gradient(135deg, #ff9f48 0%, #f26861 48%, #7c5af0 100%);
  color: #ffffff;
}

.hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: 28px;
  padding: 34px 0 46px;
}

.hero-content {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.2vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 196, 107, 0.34), transparent 15rem),
    radial-gradient(circle at 12% 84%, rgba(121, 184, 255, 0.26), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(248, 239, 255, 0.7));
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(143, 108, 255, 0.16);
  border-radius: 26px;
  transform: rotate(12deg);
  pointer-events: none;
}

.hero-content::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -76px;
  width: 160px;
  height: 160px;
  border: 20px solid rgba(255, 127, 114, 0.1);
  border-radius: 44px;
  transform: rotate(17deg);
  pointer-events: none;
}

.hero .eyebrow {
  border-color: rgba(143, 108, 255, 0.26);
  background: rgba(255, 255, 255, 0.56);
  color: var(--accent-dark);
}

.hero h1,
.hero-copy,
.hero-actions {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 8ch;
  margin-top: 14px;
}

.hero-copy {
  max-width: 680px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.9vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-orbit {
  min-height: 380px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 196, 107, 0.32), transparent 11rem),
    radial-gradient(circle at 20% 76%, rgba(143, 108, 255, 0.18), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(244, 236, 255, 0.64));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  pointer-events: none;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 28px 40px auto auto;
  width: 148px;
  height: 280px;
  border: 8px solid #2b2353;
  border-radius: 30px;
  background:
    linear-gradient(180deg, #2b2353 0 12%, #fff8f3 12% 100%);
  box-shadow: 0 24px 54px rgba(61, 38, 89, 0.18);
  transform: rotate(6deg);
}

.hero-orbit::after {
  content: "";
  position: absolute;
  left: 44px;
  bottom: 46px;
  width: 138px;
  height: 138px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), transparent 42%),
    var(--app-gradient);
  box-shadow: 0 24px 54px rgba(143, 108, 255, 0.22);
  transform: rotate(-10deg);
}

.brand-hero-mark {
  position: absolute;
  z-index: 3;
  right: 62px;
  top: 70px;
  width: 112px;
  height: 112px;
  border-radius: 28px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 54px rgba(61, 38, 89, 0.16);
  transform: rotate(6deg);
}

.tile {
  position: absolute;
  z-index: 2;
  min-width: 88px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.tile-one {
  top: 64px;
  left: 30px;
}

.tile-two {
  right: 30px;
  bottom: 102px;
}

.tile-three {
  left: 78px;
  bottom: 34px;
}

.section {
  padding: 46px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin-top: 14px;
}

.page-intro {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.product-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card::before {
  content: "";
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  display: block;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 42%),
    var(--app-gradient);
  box-shadow: 0 16px 34px rgba(143, 108, 255, 0.16);
  pointer-events: none;
}

.product-card.has-real-icon::before {
  display: none;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -42px -62px auto;
  width: 138px;
  height: 138px;
  border: 20px solid rgba(17, 24, 39, 0.035);
  border-radius: 38px;
  transform: rotate(18deg);
  pointer-events: none;
}

.product-card > *,
.content-card > *,
.support-band > *,
.page-hero > *,
.hero-content > * {
  position: relative;
  z-index: 2;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 108, 255, 0.32);
  box-shadow: var(--shadow);
}

.product-card-active {
  border-color: rgba(143, 108, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 248, 243, 0.78), rgba(255, 255, 255, 0.7));
}

.product-card:nth-child(2)::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 42%),
    linear-gradient(135deg, var(--warm), var(--coral));
}

.product-card:nth-child(3)::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 42%),
    linear-gradient(135deg, var(--lavender), var(--sky));
}

.droppin-card {
  border-color: rgba(255, 127, 114, 0.28);
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 196, 107, 0.18), transparent 7rem),
    linear-gradient(180deg, rgba(255, 248, 243, 0.84), rgba(255, 255, 255, 0.74));
}

.droppin-card::before {
  border-radius: 999px 999px 999px 8px;
  background:
    radial-gradient(circle at 72% 42%, #2b2353 0 3px, transparent 4px),
    linear-gradient(135deg, var(--warm), var(--coral));
  transform: rotate(-12deg);
}

.droppin-card::after {
  border-color: rgba(255, 127, 114, 0.08);
}

.score-chip {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  margin-top: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 196, 107, 0.16);
  color: #7a4b0d;
  font-size: 0.78rem;
  font-weight: 900;
}

.share-copy {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 900;
}

.product-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98rem;
}

.title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.app-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-title-row-hero {
  gap: 18px;
  margin-top: 16px;
}

.app-title-row.compact {
  gap: 10px;
}

.app-title-row > div {
  display: grid;
  gap: 8px;
}

.lastplace-icon {
  width: 48px;
  height: 48px;
  display: block;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.lastplace-icon.hero {
  width: 56px;
  height: 56px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 14px;
}

.lastplace-icon.small {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.lastplace-icon.legal {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.support-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 196, 107, 0.25), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(248, 239, 255, 0.58));
  box-shadow: var(--shadow-sm);
}

.stallz-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 196, 107, 0.34), transparent 13rem),
    radial-gradient(circle at 14% 82%, rgba(255, 127, 114, 0.16), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 243, 0.72));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}

.stallz-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.5fr);
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 196, 107, 0.26), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 243, 0.66));
}

.stallz-section::after,
.stallz-card::after {
  content: "";
  position: absolute;
  inset: auto -44px -64px auto;
  width: 146px;
  height: 146px;
  border: 20px solid rgba(255, 127, 114, 0.08);
  border-radius: 42px;
  transform: rotate(17deg);
  pointer-events: none;
}

.stallz-content {
  max-width: 720px;
}

.stallz-content h2,
.stallz-card h2 {
  margin-top: 12px;
}

.stallz-content p:not(.eyebrow),
.stallz-card p {
  max-width: 680px;
  margin-top: 12px;
  color: var(--muted);
}

.stallz-lede {
  color: var(--ink-soft) !important;
  font-size: 1.1rem;
  font-weight: 900;
}

.stallz-content .button {
  margin-top: 22px;
}

.badge-commerce {
  border-color: rgba(255, 127, 114, 0.28);
  background: rgba(255, 196, 107, 0.14);
  color: #9a4f08;
}

.stallz-art {
  min-height: 250px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background:
    radial-gradient(circle at 72% 18%, rgba(143, 108, 255, 0.18), transparent 9rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 243, 232, 0.66));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  pointer-events: none;
}

.stallz-art-compact {
  min-height: 220px;
}

.stallz-tile {
  position: absolute;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.stallz-tile-main {
  left: 50%;
  top: 50%;
  min-width: 138px;
  min-height: 82px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 42%),
    linear-gradient(135deg, var(--warm), var(--coral) 52%, var(--violet));
  color: #ffffff;
  font-size: 1.5rem;
  transform: translate(-50%, -50%) rotate(-5deg);
}

.stallz-tile-one {
  left: 22px;
  top: 34px;
}

.stallz-tile-two {
  right: 24px;
  top: 52px;
}

.stallz-tile-three {
  right: 42px;
  bottom: 34px;
}

.support-band h2 {
  margin-top: 10px;
}

.support-band p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

.support-email {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: 2px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 127, 114, 0.1);
  font-size: 1.08rem;
}

.page-main {
  padding: 38px 0 70px;
}

.page-main-wide {
  width: min(var(--container), calc(100% - 36px));
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 22px;
  padding: clamp(26px, 4.2vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 196, 107, 0.34), transparent 13rem),
    radial-gradient(circle at 12% 86%, rgba(121, 184, 255, 0.24), transparent 17rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(242, 232, 255, 0.68));
  color: var(--ink);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 22px 26px auto auto;
  width: 82px;
  height: 82px;
  border: 14px solid rgba(143, 108, 255, 0.07);
  border-radius: 26px;
  transform: rotate(14deg);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -54px -68px auto;
  width: 140px;
  height: 140px;
  border: 18px solid rgba(255, 127, 114, 0.09);
  border-radius: 38px;
  transform: rotate(18deg);
  pointer-events: none;
}

.page-hero > div {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 12ch;
  margin-top: 12px;
  font-size: clamp(2.35rem, 5.6vw, 4.1rem);
}

.page-hero p {
  max-width: 700px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.page-hero .badge {
  border-color: rgba(143, 108, 255, 0.26);
  background: rgba(255, 255, 255, 0.56);
  color: var(--accent-dark);
}

.page-hero .meta-line {
  width: fit-content;
  margin-top: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(143, 108, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 900;
}

.app-hero {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  align-items: center;
}

.app-hero h1 {
  max-width: none;
}

.page-hero-art {
  min-height: 210px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.app-icon-wrap {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.product-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 18px;
}

.app-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-banner {
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 196, 107, 0.2), transparent 10rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(242, 232, 255, 0.58));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.app-banner img {
  width: 100%;
  max-height: 360px;
  display: block;
  object-fit: cover;
}

.feature-art {
  min-height: 240px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.feature-art img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: block;
  object-fit: cover;
}

.app-banner-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
}

.app-mark {
  display: block;
  position: relative;
  width: 136px;
  height: 136px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 42%),
    var(--app-gradient);
  box-shadow: 0 30px 60px rgba(143, 108, 255, 0.24);
  transform: rotate(-8deg);
}

.app-mark::before,
.app-mark::after {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
}

.app-mark-drop::before {
  width: 28px;
  height: 48px;
  left: 44px;
  top: 34px;
  border-radius: 28px 28px 30px 30px;
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(18deg);
}

.app-mark-drop::after {
  width: 38px;
  height: 22px;
  right: 28px;
  bottom: 34px;
  border-radius: 999px 999px 10px 10px;
  background: var(--warm);
}

.app-mark-pin {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 42%),
    linear-gradient(135deg, var(--warm), var(--coral));
}

.app-mark-pin::before {
  width: 50px;
  height: 50px;
  left: 43px;
  top: 32px;
  border: 11px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.app-mark-pin::after {
  width: 15px;
  height: 40px;
  left: 61px;
  top: 76px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(24deg);
}

.app-mark-recipe {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 42%),
    linear-gradient(135deg, var(--lavender), var(--sky));
}

.app-mark-recipe::before {
  width: 66px;
  height: 84px;
  left: 35px;
  top: 28px;
  border-radius: 14px;
  background:
    linear-gradient(#ffffff 0 16px, transparent 16px 27px, #ffffff 27px 34px, transparent 34px 46px, #ffffff 46px 53px, transparent 53px),
    rgba(255, 255, 255, 0.34);
}

.app-mark-recipe::after {
  width: 23px;
  height: 56px;
  right: 32px;
  top: 40px;
  border-radius: 999px;
  background: var(--warm);
  transform: rotate(10deg);
}

.lastplace-page {
  width: min(1040px, calc(100% - 36px));
}

.lastplace-hero {
  min-height: 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 127, 114, 0.22), transparent 13rem),
    radial-gradient(circle at 10% 84%, rgba(22, 33, 62, 0.12), transparent 17rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 243, 0.7));
}

.lastplace-hero .hero-subtitle {
  color: var(--ink);
  font-size: clamp(1.28rem, 2.2vw, 1.72rem);
  font-weight: 900;
}

.lastplace-feature-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 127, 114, 0.16), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(242, 248, 255, 0.62));
}

.lastplace-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.lastplace-feature-card {
  min-height: 164px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.lastplace-feature-card h3 {
  font-size: 1.18rem;
}

.lastplace-feature-card p {
  margin-top: 8px;
}

.lastplace-why {
  background:
    radial-gradient(circle at 12% 18%, rgba(22, 33, 62, 0.1), transparent 10rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 243, 0.66));
}

.lastplace-legal {
  margin-bottom: 8px;
}

.legal-page {
  width: min(900px, calc(100% - 36px));
}

.legal-hero {
  grid-template-columns: minmax(0, 1fr);
}

.legal-hero h1 {
  max-width: 14ch;
}

.meta-row,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.share-link-note {
  width: fit-content;
  margin-top: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(143, 108, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.share-link-note span {
  color: var(--ink);
  font-weight: 900;
}

.page-hero .share-link-note,
.content-card .share-link-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.share-link-note-card {
  margin-top: 16px;
}

.content-stack {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.content-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 243, 0.58));
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.content-card + .content-card {
  margin-top: 14px;
}

.content-card h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.content-card h3 {
  font-size: 1.08rem;
}

.content-card p,
.content-card li {
  color: var(--muted);
  font-size: 0.99rem;
}

.content-card p {
  margin-top: 10px;
}

.store-card {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 196, 107, 0.22), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 239, 255, 0.64));
}

.store-badge-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, max-content));
  gap: 12px;
  margin-top: 18px;
}

.store-badge-link {
  width: 100%;
  max-width: 260px;
  min-height: 72px;
  display: inline-flex;
  align-items: stretch;
  justify-content: stretch;
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(61, 38, 89, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.store-badge-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(61, 38, 89, 0.2);
}

.store-badge-link:focus-visible {
  outline: 3px solid rgba(255, 127, 114, 0.5);
  outline-offset: 4px;
}

.store-badge-link-soon {
  opacity: 0.72;
}

.store-badge-link-soon:hover {
  opacity: 0.82;
}

.store-badge-image {
  width: auto;
  height: 64px;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.store-badge-fallback {
  width: 100%;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 46%),
    #111111;
}

.store-badge-fallback span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.1;
}

.store-badge-fallback strong {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.05;
}

.store-badge-google {
  background:
    linear-gradient(90deg, rgba(121, 184, 255, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 46%),
    #111111;
}

.store-badge-apple {
  background:
    linear-gradient(90deg, rgba(143, 108, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 46%),
    #1f1f24;
}

.document-panel {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.document-meta {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.document-section {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.document-section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.document-section h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

.document-section p,
.document-section li {
  color: var(--muted);
  font-size: 1rem;
}

.document-section p {
  margin-top: 10px;
}

.document-section ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.card-heading {
  display: grid;
  gap: 12px;
}

.contact-line {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.link-grid a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.link-grid a:hover {
  border-color: rgba(143, 108, 255, 0.4);
  color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(61, 38, 89, 0.1);
}

.app-grid .product-card {
  min-height: 286px;
}

.showcase-card + .app-grid {
  margin-top: 16px;
}

.app-card h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.5fr);
  gap: 18px;
  align-items: center;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(98, 189, 247, 0.12);
  transform: rotate(14deg);
  pointer-events: none;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 20px;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(121, 184, 255, 0.22), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 243, 0.66));
}

.feature-card img {
  width: 100%;
  max-height: 320px;
  display: block;
  border: 1px solid var(--line);
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.quick-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.quick-stat {
  min-height: 96px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.quick-stat strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.quick-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.screenshot-card {
  aspect-ratio: 9 / 16;
  min-height: 260px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, #2c2455 0 20px, #ffffff 20px 100%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.screenshot-card img {
  width: 100%;
  height: 100%;
  min-height: 244px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
}

.phone-frame {
  min-height: 220px;
  display: grid;
  place-items: end center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #2c2455 0 12%, transparent 12% 100%),
    radial-gradient(circle at 65% 30%, rgba(255, 196, 107, 0.2), transparent 5rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(242, 232, 255, 0.55));
  box-shadow: inset 0 0 0 6px rgba(44, 36, 85, 0.08);
}

.phone-frame span {
  width: 100%;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.legal-section {
  padding-left: 30px;
}

.legal-section::before {
  content: "";
  position: absolute;
  inset: 22px auto 22px 0;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--violet), var(--coral));
  pointer-events: none;
}

.styled-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.styled-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.email-card {
  display: flex;
  width: fit-content;
  max-width: 100%;
  min-height: 50px;
  align-items: center;
  margin-top: 14px;
  padding: 10px 15px;
  border: 1px solid rgba(143, 108, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-dark);
  font-size: clamp(1.02rem, 2.4vw, 1.26rem);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.support-tip {
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.support-tip p {
  margin-top: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .hero,
  .app-hero,
  .showcase-card,
  .feature-card,
  .stallz-section,
  .stallz-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: 360px;
  }

  .hero-orbit {
    min-height: 320px;
  }

  .product-grid,
  .content-grid,
  .lastplace-feature-grid,
  .quick-stat-grid,
  .screenshot-strip,
  .screenshot-gallery,
  .store-badge-row,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .lastplace-why,
  .legal-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 24px;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    gap: 4px;
  }

  nav a {
    min-height: 38px;
    padding: 7px 10px;
  }

  .hero {
    padding: 34px 0 56px;
  }

  .hero-content,
  .page-hero,
  .content-card,
  .support-band {
    padding: 22px;
    border-radius: 20px;
  }

  .hero-content {
    min-height: 0;
  }

  .hero-orbit,
  .page-hero-art:not(.feature-art),
  .stallz-art {
    display: none;
  }

  .feature-art,
  .feature-art img {
    min-height: 180px;
  }

  .app-banner img,
  .feature-card img {
    max-height: 240px;
  }

  .section {
    padding: 48px 0;
  }

  .page-main {
    padding: 36px 0 64px;
  }

  .page-hero h1,
  .hero h1 {
    max-width: none;
  }

  .button,
  .card-link,
  .cta-row .button {
    width: 100%;
  }

  .phone-frame {
    min-height: 180px;
  }

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

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