:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #667085;
  --soft: #eef3f5;
  --paper: #fbfcfb;
  --panel: #ffffff;
  --line: #dce4e7;
  --navy: #1f3446;
  --teal: #1c7c80;
  --coral: #d96b59;
  --gold: #d99c34;
  --sage: #91b49c;
  --mint: #dceee4;
  --rose: #fae7e2;
  --shadow: 0 18px 45px rgba(28, 46, 59, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(238, 243, 245, 0.86), rgba(251, 252, 251, 0.96)),
    radial-gradient(circle at top left, rgba(217, 107, 89, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(28, 124, 128, 0.16), transparent 34%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button {
  cursor: pointer;
}

.app-shell {
  width: min(1720px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 228, 231, 0.84);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand-lockup,
.topbar-actions,
.panel-heading,
.queue-toolbar,
.section-heading,
.detail-header,
.button-row,
.metric-strip,
.approval-box {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 12px;
  min-width: 0;
}

.mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: 0;
}

h2 {
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  font-size: 0.96rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.topbar p,
.detail-header p,
.empty-detail p,
.safety-note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.topbar-actions {
  gap: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #bfd8cf;
  border-radius: 999px;
  background: var(--mint);
  color: #285940;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(420px, 1fr) minmax(330px, 420px);
  gap: 16px;
  align-items: start;
  margin-top: 16px;
}

.people-panel,
.queue-panel,
.detail-panel {
  min-width: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(28, 46, 59, 0.08);
}

.people-panel,
.detail-panel {
  position: sticky;
  top: 16px;
}

.people-panel,
.queue-panel {
  padding: 16px;
}

.detail-panel {
  padding: 16px;
}

.panel-heading,
.queue-toolbar,
.detail-header,
.approval-box {
  justify-content: space-between;
  gap: 12px;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.icon-button.compact {
  width: 36px;
  height: 36px;
}

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

.icon-button:hover,
.secondary-button:hover {
  border-color: #a8c2c9;
  background: #f7fbfb;
}

.icon-button svg,
.primary-button svg,
.secondary-button svg,
.empty-detail svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.person-form,
.occasion-form {
  display: grid;
  gap: 10px;
}

.person-form {
  margin-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

label {
  display: grid;
  gap: 6px;
  color: #344054;
  font-size: 0.78rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid #cdd8dd;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 9px 10px;
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

textarea {
  resize: vertical;
  line-height: 1.45;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(28, 124, 128, 0.14);
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 14px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
  white-space: nowrap;
}

.primary-button {
  background: var(--navy);
  color: #fff;
}

.primary-button:hover {
  background: #142738;
}

.secondary-button {
  background: #fff;
  border-color: var(--line);
  color: var(--navy);
}

.people-list,
.queue-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.person-card,
.queue-card {
  display: grid;
  gap: 10px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
  text-align: left;
}

.person-card {
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
}

.person-card.active,
.queue-card.active {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(28, 124, 128, 0.14);
}

.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8f1f2;
  color: var(--teal);
  font-weight: 900;
}

.person-card h3,
.queue-card h3 {
  overflow-wrap: anywhere;
}

.person-card p,
.queue-card p,
.mini-meta {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  min-width: 210px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f5f8f8;
}

.segmented-control button {
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.segmented-control button.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 1px 4px rgba(28, 46, 59, 0.1);
}

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

.metric-strip div {
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f6fbfa);
}

.metric-strip span {
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.metric-strip p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.occasion-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfb;
}

.occasion-form .secondary-button {
  width: 100%;
}

.toggle-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  color: var(--ink);
  white-space: nowrap;
}

.toggle-line input {
  width: 18px;
  min-height: 18px;
}

.queue-card {
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto;
}

.queue-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--teal);
}

.queue-card.approved::before {
  background: var(--sage);
}

.queue-card.skipped::before {
  background: #a9adb3;
}

.queue-card.gift::before {
  background: var(--gold);
}

.queue-main {
  padding-left: 8px;
  min-width: 0;
}

.queue-side {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 9px;
  background: #edf6f5;
  color: #1d6264;
  font-size: 0.74rem;
  font-weight: 900;
  white-space: nowrap;
}

.badge.gold {
  background: #fff2d8;
  color: #80540e;
}

.badge.rose {
  background: var(--rose);
  color: #9e3d30;
}

.empty-detail {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 440px;
  text-align: center;
}

.empty-detail svg {
  width: 32px;
  height: 32px;
  color: var(--teal);
}

.hidden {
  display: none !important;
}

.detail-content {
  display: grid;
  gap: 14px;
}

.draft-label {
  margin-top: 2px;
}

.draft-box {
  min-height: 210px;
  padding: 12px;
  font-size: 0.94rem;
  line-height: 1.55;
}

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

.button-row.end {
  justify-content: flex-end;
}

.gift-editor,
.approval-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
  padding: 12px;
}

.gift-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 10px;
  margin-top: 12px;
}

.switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch span {
  position: relative;
  display: block;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #cdd8dd;
}

.switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 140ms ease;
  box-shadow: 0 1px 4px rgba(28, 46, 59, 0.25);
}

.switch input:checked + span {
  background: var(--teal);
}

.switch input:checked + span::after {
  transform: translateX(20px);
}

.safety-note {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #fff8ed;
  color: #8b5a12;
}

@media (max-width: 1220px) {
  .workspace {
    grid-template-columns: minmax(280px, 340px) minmax(420px, 1fr);
  }

  .detail-panel {
    grid-column: 1 / -1;
    position: static;
  }

  .people-panel {
    position: static;
  }
}

@media (max-width: 880px) {
  .app-shell {
    width: min(100vw - 20px, 720px);
    padding-top: 10px;
  }

  .topbar,
  .workspace {
    display: grid;
    grid-template-columns: 1fr;
  }

  .topbar-actions {
    justify-content: start;
  }

  .occasion-form {
    grid-template-columns: 1fr;
  }

  .segmented-control {
    width: 100%;
    min-width: 0;
  }

  .queue-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-lockup {
    align-items: start;
  }

  .mark {
    width: 42px;
    height: 42px;
  }

  .topbar p {
    display: none;
  }

  .two-col,
  .gift-fields,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .queue-card {
    grid-template-columns: 1fr;
  }

  .queue-side {
    justify-items: start;
  }
}

.launch-body {
  background: #f5f8f7;
}

.launch-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 14px 0;
}

.launch-brand,
.launch-nav nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.launch-brand {
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.launch-nav nav {
  gap: 8px;
}

.launch-nav a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.launch-nav nav a:not(.nav-button) {
  padding: 10px 8px;
}

.nav-button {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.launch-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(500px, 68vh, 640px);
  overflow: hidden;
}

.launch-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 27, 38, 0.74), rgba(12, 27, 38, 0.43) 48%, rgba(12, 27, 38, 0.16)),
    linear-gradient(180deg, rgba(12, 27, 38, 0.12), rgba(12, 27, 38, 0.36));
}

.hero-copy {
  position: relative;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  color: #fff;
}

.hero-copy .eyebrow {
  color: #cde9e5;
}

.hero-copy h1 {
  max-width: 700px;
  font-size: clamp(2.9rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy > p {
  max-width: 610px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.55;
}

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

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: var(--radius);
  padding: 0 16px;
  font-weight: 900;
  text-decoration: none;
}

.primary-link {
  background: var(--coral);
  color: #fff;
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.primary-link svg,
.secondary-link svg {
  width: 18px;
  height: 18px;
}

.launch-band,
.launch-grid,
.pricing-section {
  width: min(1180px, calc(100vw - 32px));
  margin: 18px auto 0;
}

.launch-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid rgba(31, 52, 70, 0.14);
  border-bottom: 1px solid rgba(31, 52, 70, 0.14);
}

.launch-band h2,
.pricing-section h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.launch-band > p,
.pricing-section p {
  color: #465667;
  font-size: 1.03rem;
  line-height: 1.65;
}

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

.launch-grid article {
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(28, 46, 59, 0.07);
}

.step-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  font-weight: 900;
}

.launch-grid h3 {
  font-size: 1.08rem;
}

.launch-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.product-band {
  align-items: start;
}

.mini-product {
  display: grid;
  gap: 10px;
}

.mini-product div {
  padding: 16px;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(28, 46, 59, 0.07);
}

.mini-product p {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.mini-product span {
  display: inline-flex;
  margin-top: 10px;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  background: #fff2d8;
  color: #80540e;
  padding: 0 9px;
  font-size: 0.8rem;
  font-weight: 900;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: stretch;
  padding: 36px 0 56px;
}

.price-box {
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.price-box span,
.price-box p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.price-box strong {
  font-size: 4rem;
  line-height: 1;
}

.price-box .primary-link {
  margin-top: 10px;
  background: #fff;
  color: var(--navy);
}

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

  .launch-nav nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .launch-hero {
    min-height: 590px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 27, 38, 0.76), rgba(12, 27, 38, 0.42));
  }

  .launch-band,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .launch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .launch-nav,
  .hero-copy,
  .launch-band,
  .launch-grid,
  .pricing-section {
    width: min(100vw - 24px, 520px);
  }

  .launch-nav nav a:not(.nav-button) {
    display: none;
  }

  .launch-hero {
    min-height: 560px;
  }

  .hero-copy h1 {
    font-size: 3.2rem;
  }

  .hero-actions a {
    width: 100%;
  }

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

/* Editorial launch direction */
.launch-body {
  background: #f6f1e9;
  color: #2a2722;
}

.launch-nav {
  width: min(100vw - 72px, 1460px);
  min-height: 94px;
  padding: 18px 0;
  background: rgba(246, 241, 233, 0.94);
}

.launch-brand {
  font-family: Georgia, "Times New Roman", serif;
  color: #2a2722;
  font-size: clamp(3.3rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: 0;
}

.launch-nav nav {
  gap: 34px;
  align-self: flex-start;
  padding-top: 18px;
}

.launch-nav a {
  color: #4c463e;
  font-size: 0.95rem;
  font-weight: 500;
}

.launch-nav .launch-brand {
  color: #2a2722;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: 0.78;
}

.launch-nav nav a:not(.nav-button) {
  padding: 0 0 8px;
}

.launch-nav nav a:hover,
.launch-nav nav a:focus-visible {
  color: #2a2722;
  border-bottom: 1px solid #8a6f50;
}

.launch-hero {
  min-height: min(760px, calc(100vh - 94px));
}

.launch-hero img {
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 22, 18, 0.64), rgba(24, 22, 18, 0.26) 45%, rgba(24, 22, 18, 0.06)),
    linear-gradient(180deg, rgba(24, 22, 18, 0.04), rgba(24, 22, 18, 0.26));
}

.hero-copy {
  width: min(100vw - 112px, 1280px);
  align-self: end;
  padding-bottom: 78px;
}

.hero-copy h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8.4vw, 8rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-actions {
  margin-top: 28px;
}

.primary-link,
.secondary-link {
  min-height: 50px;
  border-radius: 0;
  padding: 0 20px;
  font-weight: 700;
}

.hero-copy .primary-link {
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(246, 241, 233, 0.1);
  color: #fff;
}

.launch-band,
.launch-grid,
.pricing-section {
  width: min(100vw - 112px, 1280px);
  margin-top: 0;
}

.launch-band {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.82fr);
  gap: clamp(44px, 8vw, 120px);
  min-height: 360px;
  padding: 72px 0;
  border: 0;
}

.launch-band .eyebrow,
.launch-grid .eyebrow,
.pricing-section .eyebrow {
  color: #70665b;
  letter-spacing: 0.05em;
}

.launch-band h2,
.pricing-section h2 {
  color: #2a2722;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.3rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.launch-band > p,
.pricing-section p {
  color: #5d554b;
  font-size: 1.14rem;
  line-height: 1.75;
}

.launch-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(83, 74, 64, 0.24);
  border-left: 1px solid rgba(83, 74, 64, 0.24);
}

.launch-grid article {
  min-height: 280px;
  padding: 28px 26px;
  border: 0;
  border-right: 1px solid rgba(83, 74, 64, 0.24);
  border-bottom: 1px solid rgba(83, 74, 64, 0.24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.launch-grid h3 {
  margin-top: 70px;
  color: #2a2722;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.launch-grid p:not(.eyebrow) {
  margin-top: 14px;
  color: #5d554b;
  font-size: 0.98rem;
  line-height: 1.65;
}

.product-band {
  border-top: 0;
}

.mini-product {
  gap: 0;
  border-top: 1px solid rgba(83, 74, 64, 0.24);
}

.mini-product div {
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid rgba(83, 74, 64, 0.24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mini-product strong {
  color: #2a2722;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.mini-product p {
  color: #5d554b;
}

.mini-product span {
  border-radius: 0;
  background: transparent;
  color: #7a5635;
  padding: 0;
}

.pricing-section {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(36px, 8vw, 120px);
  padding: 78px 0 84px;
  border-top: 1px solid rgba(83, 74, 64, 0.24);
}

.price-box {
  min-height: 360px;
  border: 1px solid rgba(83, 74, 64, 0.3);
  border-radius: 0;
  background: #2f3f35;
}

.price-box strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.price-box .primary-link {
  background: #f6f1e9;
  color: #2f3f35;
}

@media (max-width: 900px) {
  .launch-nav {
    width: min(100vw - 32px, 720px);
    min-height: auto;
  }

  .launch-brand {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .launch-nav nav {
    gap: 20px;
    padding-top: 0;
  }

  .launch-hero {
    min-height: 620px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(24, 22, 18, 0.58), rgba(24, 22, 18, 0.3));
  }

  .hero-copy,
  .launch-band,
  .launch-grid,
  .pricing-section {
    width: min(100vw - 32px, 720px);
  }

  .hero-copy {
    padding-bottom: 52px;
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 13vw, 6.2rem);
  }

  .launch-band,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .launch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .launch-nav nav a:nth-child(2),
  .launch-nav nav a:nth-child(3) {
    display: none;
  }

  .launch-hero {
    min-height: 560px;
  }

  .hero-copy h1 {
    font-size: 3.7rem;
  }

  .launch-band {
    min-height: auto;
    padding: 54px 0;
  }

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

  .launch-grid article {
    min-height: 230px;
  }
}

.model-section {
  width: min(100vw - 112px, 1280px);
  margin: 0 auto;
  padding: 76px 0 84px;
  border-top: 1px solid rgba(83, 74, 64, 0.24);
}

.model-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: end;
}

.model-intro .eyebrow,
.process-drawing span,
.timing-strip span,
.model-lists h3 {
  color: #70665b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.model-intro h2 {
  color: #2a2722;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.1rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.model-intro > p {
  color: #5d554b;
  font-size: 1.14rem;
  line-height: 1.75;
}

.process-drawing {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 54px;
  border: 1px solid rgba(83, 74, 64, 0.26);
}

.process-rail {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 58px;
  height: 1px;
  background: rgba(83, 74, 64, 0.35);
}

.process-drawing article {
  position: relative;
  min-height: 240px;
  padding: 28px 26px;
  border-right: 1px solid rgba(83, 74, 64, 0.22);
}

.process-drawing article:last-child {
  border-right: 0;
}

.process-drawing article::before {
  content: "";
  position: absolute;
  top: 49px;
  left: 26px;
  width: 18px;
  height: 18px;
  border: 1px solid #8a6f50;
  border-radius: 50%;
  background: #f6f1e9;
  box-shadow: 0 0 0 8px #f6f1e9;
}

.process-drawing h3 {
  margin-top: 86px;
  color: #2a2722;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

.process-drawing p {
  margin-top: 12px;
  color: #5d554b;
  font-size: 0.98rem;
  line-height: 1.6;
}

.timing-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-right: 1px solid rgba(83, 74, 64, 0.26);
  border-bottom: 1px solid rgba(83, 74, 64, 0.26);
  border-left: 1px solid rgba(83, 74, 64, 0.26);
}

.timing-strip div {
  min-height: 120px;
  padding: 22px 26px;
  border-right: 1px solid rgba(83, 74, 64, 0.22);
}

.timing-strip div:last-child {
  border-right: 0;
}

.timing-strip p {
  margin-top: 8px;
  color: #5d554b;
  line-height: 1.55;
}

.model-lists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(83, 74, 64, 0.24);
  border-left: 1px solid rgba(83, 74, 64, 0.24);
}

.model-lists article {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid rgba(83, 74, 64, 0.24);
  border-bottom: 1px solid rgba(83, 74, 64, 0.24);
}

.model-lists ul {
  display: grid;
  gap: 10px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.model-lists li {
  color: #3d3831;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.2;
}

@media (max-width: 900px) {
  .model-section {
    width: min(100vw - 32px, 720px);
    padding: 60px 0 68px;
  }

  .model-intro,
  .process-drawing,
  .timing-strip,
  .model-lists {
    grid-template-columns: 1fr;
  }

  .process-rail {
    top: 42px;
    bottom: 42px;
    left: 34px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .process-drawing article {
    min-height: 190px;
    padding-left: 74px;
    border-right: 0;
    border-bottom: 1px solid rgba(83, 74, 64, 0.22);
  }

  .process-drawing article:last-child {
    border-bottom: 0;
  }

  .process-drawing article::before {
    left: 25px;
  }

  .process-drawing h3 {
    margin-top: 48px;
  }

  .timing-strip div,
  .model-lists article {
    border-right: 0;
  }
}

.value-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(44px, 8vw, 112px);
  width: min(100vw - 112px, 1280px);
  margin: 0 auto;
  padding: 76px 0;
  border-bottom: 1px solid rgba(83, 74, 64, 0.24);
}

.value-copy h2,
.founder-hero h1,
.founder-system h2,
.kill-section h2 {
  color: #2a2722;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.1rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.value-copy p:not(.eyebrow),
.founder-hero p,
.founder-system p {
  margin-top: 22px;
  color: #5d554b;
  font-size: 1.14rem;
  line-height: 1.75;
}

.value-equation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid rgba(83, 74, 64, 0.26);
}

.value-equation article {
  min-height: 250px;
  padding: 24px;
}

.value-equation > div {
  display: grid;
  place-items: center;
  width: 46px;
  border-right: 1px solid rgba(83, 74, 64, 0.2);
  border-left: 1px solid rgba(83, 74, 64, 0.2);
  color: #8a6f50;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.value-equation span,
.mvp-note strong,
.founder-grid span,
.founder-grid h2,
.founder-system strong,
.kill-section li {
  color: #70665b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.value-equation strong {
  display: block;
  margin-top: 62px;
  color: #2a2722;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.18;
}

.model-section {
  scroll-margin-top: 116px;
}

.model-intro > div {
  min-width: 0;
}

.model-intro h2 {
  max-width: 780px;
  text-wrap: balance;
}

.mvp-note {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin-top: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(83, 74, 64, 0.24);
  border-bottom: 1px solid rgba(83, 74, 64, 0.24);
  color: #5d554b;
  line-height: 1.6;
}

.founder-body .launch-nav {
  border-bottom: 1px solid rgba(83, 74, 64, 0.2);
}

.founder-hero,
.founder-grid,
.founder-system,
.kill-section {
  width: min(100vw - 112px, 1280px);
  margin: 0 auto;
}

.founder-hero {
  padding: 84px 0 72px;
}

.founder-hero h1 {
  max-width: 980px;
  margin-top: 12px;
}

.founder-hero p {
  max-width: 720px;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(83, 74, 64, 0.24);
  border-left: 1px solid rgba(83, 74, 64, 0.24);
}

.founder-grid article {
  min-height: 280px;
  padding: 26px;
  border-right: 1px solid rgba(83, 74, 64, 0.24);
  border-bottom: 1px solid rgba(83, 74, 64, 0.24);
}

.founder-grid h2 {
  margin-top: 72px;
  color: #2a2722;
}

.founder-grid p {
  margin-top: 14px;
  color: #5d554b;
  font-size: 1rem;
  line-height: 1.65;
}

.founder-system {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.7fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: start;
  padding: 78px 0;
  border-bottom: 1px solid rgba(83, 74, 64, 0.24);
}

.founder-system ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(83, 74, 64, 0.24);
  list-style: none;
  counter-reset: founder-step;
}

.founder-system li {
  counter-increment: founder-step;
  padding: 18px 0 18px 54px;
  border-bottom: 1px solid rgba(83, 74, 64, 0.24);
  color: #4f473d;
  line-height: 1.58;
  position: relative;
}

.founder-system li::before {
  content: counter(founder-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 20px;
  color: #8a6f50;
  font-size: 0.78rem;
  font-weight: 900;
}

.kill-section {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(360px, 1fr);
  gap: clamp(42px, 8vw, 118px);
  align-items: start;
  padding: 76px 0;
  border-bottom: 1px solid rgba(83, 74, 64, 0.24);
}

.kill-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(83, 74, 64, 0.24);
  list-style: none;
}

.kill-section li {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: #f6f1e9;
  color: #3d3831;
}

.decision-section {
  align-items: center;
  border-bottom: 0;
}

.decision-section .primary-link {
  justify-self: start;
  background: #2f3f35;
  color: #f6f1e9;
}

@media (max-width: 1060px) {
  .value-section,
  .founder-system,
  .kill-section {
    grid-template-columns: 1fr;
  }

  .value-equation {
    grid-template-columns: 1fr;
  }

  .value-equation > div {
    width: auto;
    min-height: 46px;
    border-top: 1px solid rgba(83, 74, 64, 0.2);
    border-right: 0;
    border-bottom: 1px solid rgba(83, 74, 64, 0.2);
    border-left: 0;
  }

  .value-equation article {
    min-height: 180px;
  }

  .value-equation strong {
    margin-top: 42px;
  }

  .founder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .value-section,
  .founder-hero,
  .founder-grid,
  .founder-system,
  .kill-section {
    width: min(100vw - 32px, 720px);
  }

  .value-copy h2,
  .founder-hero h1,
  .founder-system h2,
  .kill-section h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .model-intro h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .model-intro > p {
    font-size: 1.05rem;
  }

  .mvp-note {
    display: grid;
  }
}

@media (max-width: 600px) {
  .launch-nav nav a:nth-child(4) {
    display: none;
  }

  .founder-grid,
  .kill-section ul {
    grid-template-columns: 1fr;
  }
}

/* V1 company launch sprint */
:root {
  --ink: #2b2421;
  --muted: #6f625d;
  --paper: #fbfaf7;
  --warm: #f6ece6;
  --line: rgba(74, 66, 57, 0.22);
  --navy: #2f3f35;
  --teal: #547f74;
  --coral: #9f5f59;
  --gold: #b7833d;
  --sage: #dfe8df;
  --mint: #e8efe7;
  --rose: #f7e7e2;
  --shadow: 0 18px 45px rgba(49, 42, 35, 0.08);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
}

a,
button,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(84, 127, 116, 0.58);
  outline-offset: 4px;
}

.launch-body {
  background:
    linear-gradient(180deg, #f6f1e9 0%, #fbfaf7 48%, #eef2ed 100%);
  color: var(--ink);
}

.launch-nav {
  width: min(100vw - 64px, 1280px);
  min-height: 82px;
  border-bottom: 1px solid rgba(74, 66, 57, 0.16);
  background: rgba(246, 241, 233, 0.94);
  backdrop-filter: blur(14px);
}

.launch-nav .launch-brand,
.footer-brand {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5.2vw, 4.8rem);
  font-weight: 800;
  line-height: 0.82;
  text-decoration: none;
}

.launch-nav nav {
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding-top: 8px;
}

.launch-nav nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  color: #4d463e;
  font-size: 0.94rem;
  line-height: 1;
  text-decoration: none;
}

.launch-nav .nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(47, 63, 53, 0.3);
  padding: 0 16px;
  background: #2f3f35;
  color: #fbfaf7;
}

.company-hero {
  min-height: min(760px, calc(100vh - 82px));
}

.launch-nav .launch-brand {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1;
}

.company-hero img {
  filter: saturate(0.96) contrast(0.96);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(31, 28, 24, 0.72), rgba(31, 28, 24, 0.34) 48%, rgba(31, 28, 24, 0.06)),
    linear-gradient(180deg, rgba(31, 28, 24, 0.02), rgba(31, 28, 24, 0.3));
}

.hero-copy {
  width: min(100vw - 64px, 1280px);
  padding-bottom: clamp(58px, 9vh, 96px);
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero-copy h1 {
  max-width: 850px;
  font-size: clamp(3.7rem, 8vw, 7.7rem);
}

.hero-copy > p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
}

.primary-link,
.secondary-link {
  min-height: 50px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.primary-link:hover,
.secondary-link:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.hero-copy .primary-link,
.final-cta .primary-link {
  border: 1px solid #2f3f35;
  background: #2f3f35;
  color: #fbfaf7;
}

.hero-copy .secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.explain-section,
.value-row,
.process-section,
.why-section,
.final-cta,
.faq-section,
.site-footer {
  width: min(100vw - 64px, 1280px);
  margin: 0 auto;
}

.explain-section,
.why-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: end;
  padding: clamp(68px, 9vw, 112px) 0;
  border-bottom: 1px solid var(--line);
}

.explain-section h2,
.section-intro h2,
.why-section h2,
.final-cta h2,
.faq-section h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.explain-section > p,
.section-intro > p,
.why-section p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-row article {
  min-height: 260px;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.value-row span,
.quiet-list p,
.faq-list summary,
.site-footer nav a {
  color: #554d43;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.value-row p {
  margin-top: 84px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.14;
}

.process-section {
  padding: clamp(72px, 10vw, 124px) 0;
  border-bottom: 1px solid var(--line);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
  gap: clamp(42px, 8vw, 106px);
  align-items: end;
}

.three-step {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.three-step article {
  min-height: 230px;
}

.why-section {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(223, 232, 223, 0.5), rgba(223, 232, 223, 0));
}

.quiet-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.quiet-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.final-cta {
  display: grid;
  justify-items: start;
  gap: 24px;
  padding: clamp(72px, 10vw, 122px) 0;
  border-bottom: 1px solid var(--line);
}

.final-cta h2 {
  max-width: 900px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(340px, 0.9fr);
  gap: clamp(42px, 8vw, 112px);
  padding: clamp(72px, 10vw, 118px) 0;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

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

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: #8f5f43;
  font-size: 1.2rem;
  line-height: 0.8;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin-top: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: end;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-brand {
  display: inline-block;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

/* App polish */
.app-body {
  background:
    linear-gradient(180deg, #f6f1e9 0%, #fbfaf7 46%, #eef2ed 100%);
  color: var(--ink);
}

.app-shell {
  width: min(1540px, calc(100vw - 32px));
  padding: 18px 0 34px;
}

.topbar,
.people-panel,
.queue-panel,
.detail-panel {
  border-color: var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.9);
  box-shadow: 0 18px 50px rgba(49, 42, 35, 0.07);
}

.topbar {
  min-height: 86px;
  backdrop-filter: blur(18px);
}

.mark {
  background: #2f3f35;
  color: #fbfaf7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  text-decoration: none;
  text-transform: lowercase;
}

.brand-lockup h1,
.panel-heading h2,
.queue-toolbar h2,
.detail-header h2,
.empty-detail h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.brand-lockup h1 {
  font-size: 1.75rem;
}

.brand-lockup p {
  margin-top: 3px;
}

.subtle-link {
  color: #4d463e;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.status-pill {
  border-color: rgba(47, 63, 53, 0.18);
  background: var(--mint);
  color: #2f3f35;
}

.workspace {
  gap: 18px;
}

.people-panel,
.queue-panel,
.detail-panel {
  padding: 18px;
}

label {
  color: #4b443c;
}

input,
select,
textarea {
  min-height: 44px;
  border-color: rgba(74, 66, 57, 0.24);
  background: rgba(255, 255, 255, 0.86);
}

textarea {
  min-height: 118px;
}

.primary-button {
  background: #2f3f35;
}

.primary-button:hover {
  background: #25352c;
}

.secondary-button,
.icon-button {
  background: rgba(255, 255, 255, 0.78);
  color: #2f3f35;
}

.soft-empty {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.soft-empty strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.soft-empty p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.person-card,
.queue-card,
.metric-strip div,
.gift-editor,
.approval-box {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: none;
}

.person-card.active,
.queue-card.active {
  border-color: rgba(84, 127, 116, 0.82);
  box-shadow: 0 0 0 3px rgba(84, 127, 116, 0.12);
}

.avatar,
.badge {
  background: #e8efe7;
  color: #35665a;
}

.queue-card::before {
  background: #547f74;
}

.queue-card.gift::before {
  background: #b7833d;
}

.badge.gold {
  background: #f3e4ca;
  color: #77531f;
}

.safety-note {
  background: #f3e4ca;
  color: #6a4a20;
}

@media (max-width: 980px) {
  .launch-nav,
  .hero-copy,
  .explain-section,
  .value-row,
  .process-section,
  .why-section,
  .final-cta,
  .faq-section,
  .site-footer {
    width: min(100vw - 32px, 760px);
  }

  .launch-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .launch-nav nav {
    width: 100%;
    justify-content: space-between;
  }

  .explain-section,
  .section-intro,
  .why-section,
  .faq-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .value-row,
  .three-step {
    grid-template-columns: 1fr;
  }

  .value-row article {
    min-height: 200px;
  }

  .value-row p {
    margin-top: 42px;
  }

  .three-step .process-rail {
    top: 42px;
    bottom: 42px;
    left: 34px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .three-step article {
    padding-left: 74px;
    border-right: 0;
    border-bottom: 1px solid rgba(83, 74, 64, 0.22);
  }

  .three-step article::before {
    left: 25px;
  }
}

@media (max-width: 640px) {
  .launch-nav .launch-brand {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .launch-nav nav a:not(.nav-cta) {
    display: none;
  }

  .launch-nav .nav-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  .company-hero {
    min-height: 620px;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 14vw, 4.9rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions a,
  .final-cta a {
    width: 100%;
  }

  .explain-section h2,
  .section-intro h2,
  .why-section h2,
  .final-cta h2,
  .faq-section h2 {
    font-size: clamp(2.85rem, 13vw, 4.25rem);
  }

  .site-footer {
    align-items: start;
  }

  .app-shell {
    width: min(100vw - 20px, 720px);
  }

  .topbar-actions {
    display: grid;
    grid-template-columns: 1fr auto auto;
    width: 100%;
  }

  .status-pill {
    justify-content: center;
  }
}

.simple-page {
  width: min(100vw - 64px, 900px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) 0;
}

.simple-page h1 {
  margin-top: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 8vw, 6.2rem);
  font-weight: 500;
  line-height: 0.96;
}

.simple-page > p,
.simple-page section p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.simple-page section {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.simple-page h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 500;
}

.simple-page a {
  color: #2f3f35;
  font-weight: 800;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.simple-actions a {
  text-decoration: none;
}

.not-found-page {
  display: grid;
  min-height: 100vh;
  align-content: center;
  justify-items: start;
  gap: 22px;
}

@media (max-width: 640px) {
  .simple-page {
    width: min(100vw - 32px, 720px);
  }
}

/* Loving conversation app */
.loving-app {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.92), rgba(246, 241, 233, 0.35) 34%, transparent 58%),
    radial-gradient(circle at 82% 7%, rgba(247, 231, 226, 0.72), transparent 38%),
    linear-gradient(135deg, #f8efe9 0%, #fbfaf7 48%, #eef4ee 100%);
}

.conversation-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100vw - 48px, 1180px);
  margin: 0 auto;
  padding: 28px 0 18px;
}

.conversation-brand {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 0.9;
  text-decoration: none;
}

.quiet-return {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(74, 66, 57, 0.22);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.58);
  color: #4d463e;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.conversation-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.58fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: stretch;
  width: min(100vw - 48px, 1180px);
  margin: 0 auto;
  padding: 24px 0 58px;
}

.conversation-card,
.memory-card {
  border: 1px solid rgba(74, 66, 57, 0.2);
  border-radius: 28px;
  background: rgba(251, 250, 247, 0.84);
  box-shadow: 0 28px 80px rgba(49, 42, 35, 0.1);
  backdrop-filter: blur(18px);
}

.conversation-card {
  min-height: min(720px, calc(100vh - 132px));
  display: grid;
  align-content: space-between;
  padding: clamp(30px, 6vw, 72px);
}

.progress-dots {
  display: flex;
  gap: 10px;
  margin-bottom: clamp(22px, 4vw, 38px);
}

.progress-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(74, 66, 57, 0.2);
  transition: width 180ms ease, background 180ms ease;
}

.progress-dots span.active {
  width: 34px;
  background: #2f3f35;
}

.care-promise {
  position: relative;
  display: grid;
  gap: 16px;
  max-width: 680px;
  margin: 0 0 18px;
  overflow: hidden;
  border: 0;
  border-radius: 30px 26px 34px 24px;
  padding: clamp(20px, 4vw, 30px);
  background:
    radial-gradient(circle at 88% 8%, rgba(247, 231, 226, 0.82), rgba(247, 231, 226, 0) 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 231, 226, 0.34) 54%, rgba(238, 242, 237, 0.46));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(159, 95, 89, 0.08);
}

.care-promise::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  border: 0;
  border-radius: 30px 26px 0 0;
  background:
    linear-gradient(90deg, rgba(159, 95, 89, 0.18), rgba(159, 95, 89, 0.06) 30%, rgba(47, 63, 53, 0.13) 64%, rgba(159, 95, 89, 0.12));
  pointer-events: none;
}

.care-promise::after {
  content: "\2665";
  position: absolute;
  top: 16px;
  right: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(159, 95, 89, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(159, 95, 89, 0.56);
  font-size: 0.82rem;
  box-shadow: 0 8px 18px rgba(49, 42, 35, 0.06);
  line-height: 1;
  pointer-events: none;
}

.who-card::after,
.kept-note::after,
.take-with-you::after {
  content: "\2665";
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(159, 95, 89, 0.28);
  font-size: 0.82rem;
  line-height: 1;
  pointer-events: none;
}

.care-promise h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
}

.tender-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6a5f54;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.45;
}

.tender-line span,
.tender-eyebrow span {
  color: var(--coral);
}

.tender-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.care-cartoon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.care-cartoon article {
  position: relative;
  min-height: 92px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  overflow: hidden;
  border: 1px solid rgba(159, 95, 89, 0.18);
  border-radius: 20px 18px 22px 17px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.24),
    0 8px 18px rgba(49, 42, 35, 0.04);
  animation: carePanelIn 640ms ease both;
}

.care-cartoon article::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 10px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(159, 95, 89, 0.34);
  box-shadow: -9px 6px 0 rgba(47, 63, 53, 0.16);
}

.care-cartoon article:nth-child(even) {
  border-radius: 18px 22px 17px 21px;
}

.care-cartoon article:nth-child(2) {
  animation-delay: 90ms;
}

.care-cartoon article:nth-child(3) {
  animation-delay: 180ms;
}

.care-cartoon article:nth-child(4) {
  animation-delay: 270ms;
}

.care-cartoon svg {
  width: 58px;
  height: 44px;
  overflow: visible;
}

.care-cartoon svg circle,
.care-cartoon svg rect,
.care-cartoon svg path {
  fill: none;
  stroke: #554d43;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.care-cartoon article:nth-child(4) svg path:last-child {
  stroke: var(--coral);
}

.care-cartoon article:first-child svg path:last-child {
  stroke: var(--coral);
}

.care-cartoon span {
  align-items: center;
  justify-content: center;
  color: #554d43;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.care-cartoon.home-care-cartoon {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.6vw, 16px);
  margin-top: 46px;
}

.home-care-cartoon article {
  min-height: 184px;
  gap: 12px;
  border-color: rgba(159, 95, 89, 0.22);
  border-radius: 30px 24px 32px 22px;
  padding: clamp(18px, 2.4vw, 26px);
  background:
    radial-gradient(circle at 88% 10%, rgba(247, 231, 226, 0.7), transparent 36%),
    rgba(255, 255, 255, 0.68);
}

.home-care-cartoon article:nth-child(even) {
  border-radius: 24px 32px 22px 30px;
}

.home-care-cartoon svg {
  width: 84px;
  height: 60px;
}

.home-care-cartoon span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.05;
  text-transform: none;
}

.home-care-cartoon p {
  max-width: 18ch;
  margin: 0;
  color: #655c51;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 700px) {
  .care-cartoon.home-care-cartoon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
  }

  .home-care-cartoon article {
    min-height: 158px;
    gap: 8px;
    padding: 14px 10px;
  }

  .home-care-cartoon svg {
    width: 58px;
    height: 42px;
  }

  .home-care-cartoon span {
    font-size: 1.06rem;
  }

  .home-care-cartoon p {
    max-width: 17ch;
    font-size: 0.78rem;
    line-height: 1.35;
  }
}

.conversation-step {
  display: none;
}

.conversation-step.active {
  display: grid;
  gap: 22px;
}

.conversation-step h1 {
  max-width: 680px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.step-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.conversation-step label {
  max-width: 620px;
  color: #554d43;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.who-card {
  position: relative;
  max-width: 560px;
  overflow: hidden;
  border: 1px solid rgba(159, 95, 89, 0.18);
  border-radius: 30px 26px 32px 24px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(246, 241, 233, 0.62));
  box-shadow:
    0 18px 44px rgba(49, 42, 35, 0.08),
    inset 0 0 0 5px rgba(255, 255, 255, 0.24);
}

.who-card input {
  width: 100%;
  min-height: 92px;
  border: 0;
  border-radius: 18px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 7vw, 4.6rem);
  line-height: 1;
}

.who-card input::placeholder {
  color: rgba(40, 36, 31, 0.34);
}

.conversation-step input,
.conversation-step textarea {
  margin-top: 8px;
  border-radius: 18px;
  border-color: rgba(74, 66, 57, 0.18);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-size: 1.02rem;
  text-transform: none;
}

.conversation-step .who-card input {
  min-height: 92px;
  border-radius: 18px;
  padding: 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}

.conversation-step textarea {
  min-height: 188px;
}

.choice-grid,
.moment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 680px;
}

.choice-grid button,
.moment-grid button,
.add-detail-row button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(159, 95, 89, 0.16);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.68);
  color: #4d463e;
  font-weight: 800;
  line-height: 1.2;
  white-space: normal;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.22);
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.choice-grid button,
.moment-grid button {
  padding-right: 38px;
}

.choice-grid button::after,
.moment-grid button::after {
  content: "\2665";
  position: absolute;
  top: 50%;
  right: 15px;
  color: rgba(159, 95, 89, 0);
  font-size: 0.75rem;
  transform: translateY(-50%) scale(0.6);
  transition: color 160ms ease, transform 160ms ease;
}

.choice-grid button:hover,
.moment-grid button:hover,
.add-detail-row button:hover {
  transform: translateY(-1px);
}

.choice-grid button.active,
.moment-grid button.active {
  border-color: #2f3f35;
  background: #2f3f35;
  color: #fbfaf7;
}

.choice-grid button.active::after,
.moment-grid button.active::after {
  color: rgba(251, 250, 247, 0.86);
  transform: translateY(-50%) scale(1);
}

.choice-grid button.just-kept,
.moment-grid button.just-kept {
  animation: keptPulse 520ms ease;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.moment-grid button {
  justify-content: flex-start;
  border-radius: 22px 20px 24px 18px;
  padding: 18px 38px 18px 18px;
  text-align: left;
}

.moment-grid button:nth-child(even) {
  border-radius: 19px 24px 18px 23px;
}

.random-note-idea {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 680px;
  overflow: hidden;
  border: 1px solid rgba(159, 95, 89, 0.18);
  border-radius: 26px 22px 28px 20px;
  padding: 16px 18px;
  background:
    radial-gradient(circle at 92% 10%, rgba(247, 231, 226, 0.84), rgba(247, 231, 226, 0) 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(238, 242, 237, 0.46));
  box-shadow:
    0 14px 34px rgba(49, 42, 35, 0.06),
    inset 0 0 0 5px rgba(255, 255, 255, 0.22);
  animation: softReveal 620ms ease both;
}

.random-note-idea::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  border: 0;
  border-radius: 26px 22px 0 0;
  background: linear-gradient(90deg, rgba(159, 95, 89, 0.16), rgba(47, 63, 53, 0.12), rgba(159, 95, 89, 0.08));
  pointer-events: none;
}

.random-note-idea svg {
  width: 100px;
  height: 72px;
  overflow: visible;
}

.random-note-idea svg path {
  fill: none;
  stroke: #554d43;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.random-note-idea svg path:nth-child(3) {
  stroke: var(--coral);
}

.random-note-idea p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.random-note-idea span {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-weight: 900;
}

.add-detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 620px;
}

.add-detail-row input {
  margin-top: 0;
}

.add-detail-row button {
  border-radius: 18px;
  background: rgba(246, 241, 233, 0.88);
}

.form-error {
  min-height: 24px;
  margin-top: 22px;
  color: var(--coral);
  font-size: 0.95rem;
  font-weight: 800;
}

.conversation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(34px, 7vw, 74px);
}

.conversation-actions .primary-button,
.conversation-actions .secondary-button {
  min-height: 56px;
  border-radius: 999px;
  padding: 0 24px;
}

.conversation-actions .primary-button {
  min-width: 190px;
}

.conversation-actions .secondary-button[hidden] {
  display: none;
}

.kept-note {
  position: relative;
  max-width: 560px;
  overflow: hidden;
  border: 1px solid rgba(159, 95, 89, 0.18);
  border-radius: 24px 22px 26px 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.kept-note span {
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.kept-note p {
  margin-top: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.delight-note {
  max-width: 560px;
  border-left: 3px solid var(--coral);
  padding: 4px 0 4px 18px;
  animation: softReveal 620ms ease both;
}

.delight-note span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.1;
}

.delight-note p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.send-reassurance {
  max-width: 560px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  border: 1px solid rgba(47, 63, 53, 0.13);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(238, 242, 237, 0.72);
  color: #405247;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.35;
}

.send-reassurance::before {
  content: "\2665";
  color: rgba(159, 95, 89, 0.72);
  font-size: 0.75rem;
  line-height: 1;
}

.text-preview-card {
  position: relative;
  max-width: 620px;
  display: grid;
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgba(159, 95, 89, 0.16);
  border-radius: 28px 24px 30px 22px;
  padding: 24px;
  background:
    radial-gradient(circle at 92% 4%, rgba(247, 231, 226, 0.88), rgba(247, 231, 226, 0) 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(246, 241, 233, 0.42));
  box-shadow:
    0 18px 48px rgba(49, 42, 35, 0.07),
    inset 0 0 0 5px rgba(255, 255, 255, 0.2);
  animation: softReveal 680ms ease both;
}

.text-preview-card::after {
  content: "\2665";
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(159, 95, 89, 0.28);
  font-size: 0.78rem;
  line-height: 1;
}

.message-shell {
  display: grid;
  gap: 8px;
}

.message-meta {
  color: #554d43;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-bubble {
  position: relative;
  max-width: 520px;
  border-radius: 24px 24px 24px 8px;
  padding: 18px 20px;
  background: #31463b;
  color: #fbfaf7;
  box-shadow: 0 14px 32px rgba(47, 63, 53, 0.18);
}

.text-bubble::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 18px;
  height: 18px;
  border-bottom-right-radius: 18px;
  background: #31463b;
}

.text-bubble strong {
  display: block;
  color: #fbfaf7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.12;
}

.text-bubble p {
  margin-top: 8px;
  color: rgba(251, 250, 247, 0.82);
  line-height: 1.45;
}

.approval-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.approval-pills span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(47, 63, 53, 0.12);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.68);
  color: #4d463e;
  font-size: 0.82rem;
  font-weight: 900;
}

.partner-suggestion {
  margin: 0;
  border-top: 1px solid rgba(74, 66, 57, 0.12);
  padding-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.activation-card {
  position: relative;
  max-width: 620px;
  display: grid;
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgba(47, 63, 53, 0.18);
  border-radius: 28px 24px 30px 22px;
  padding: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(238, 242, 237, 0.95), rgba(238, 242, 237, 0) 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(238, 242, 237, 0.54));
  box-shadow:
    0 18px 48px rgba(49, 42, 35, 0.07),
    inset 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.activation-card h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.4vw, 2.65rem);
  font-weight: 500;
  line-height: 1.05;
}

.activation-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.58;
}

.activation-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  border-top: 1px solid rgba(74, 66, 57, 0.12);
  padding-top: 14px;
}

.activation-price strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.activation-price span {
  color: #4d463e;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.activation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.activate-plan-button,
.email-setup-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 63, 53, 0.18);
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  text-decoration: none;
}

.activate-plan-button {
  background: #31463b;
  color: #fbfaf7;
  box-shadow: 0 12px 28px rgba(47, 63, 53, 0.14);
}

.email-setup-button {
  background: rgba(255, 255, 255, 0.7);
  color: #31463b;
}

.activation-note {
  margin: 0;
  font-size: 0.9rem;
}

.peaceful-plan {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 620px;
  overflow: hidden;
  border: 1px solid rgba(159, 95, 89, 0.16);
  border-radius: 24px 22px 26px 20px;
  background: rgba(255, 255, 255, 0.52);
  animation: softReveal 720ms ease both;
}

.peaceful-plan article {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(74, 66, 57, 0.14);
}

.peaceful-plan article:last-child {
  border-bottom: 0;
}

.peaceful-plan span {
  color: #554d43;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.peaceful-plan p {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
}

.memory-card {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 24px;
  min-height: 620px;
  padding: clamp(28px, 4vw, 42px);
}

.memory-card h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  font-weight: 500;
  line-height: 0.96;
}

.memory-section {
  border-top: 1px solid rgba(74, 66, 57, 0.18);
  padding-top: 18px;
}

.memory-section span,
.calendar-preview > span {
  color: #554d43;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.memory-section p,
.privacy-line {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.62;
}

.calendar-preview {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(74, 66, 57, 0.18);
  padding-top: 18px;
}

#calendarList {
  display: grid;
  gap: 10px;
}

#calendarList article {
  position: relative;
  display: grid;
  gap: 4px;
  overflow: hidden;
  border: 1px solid rgba(159, 95, 89, 0.14);
  border-radius: 18px 16px 20px 15px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.58);
}

#calendarList article::after {
  content: "\2665";
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(159, 95, 89, 0.28);
  font-size: 0.72rem;
}

#calendarList strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
}

#calendarList p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.memory-letter {
  position: relative;
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(159, 95, 89, 0.16);
  border-radius: 22px 20px 24px 18px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(246, 241, 233, 0.84), rgba(255, 255, 255, 0.6));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.memory-letter.note-warmed {
  transform: translateY(-2px);
  border-color: rgba(159, 95, 89, 0.28);
  background:
    linear-gradient(135deg, rgba(247, 231, 226, 0.72), rgba(255, 255, 255, 0.64));
}

.memory-letter p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  line-height: 1.24;
}

.privacy-line {
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .conversation-topbar,
  .conversation-shell {
    width: min(100vw - 28px, 720px);
  }

  .conversation-shell {
    grid-template-columns: 1fr;
  }

  .conversation-card {
    min-height: auto;
  }

  .memory-card {
    position: static;
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .conversation-topbar {
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .conversation-brand {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .quiet-return {
    display: none;
  }

  .conversation-shell {
    width: min(100vw - 18px, 720px);
    padding-top: 2px;
  }

  .conversation-card,
  .memory-card {
    border-radius: 22px;
  }

  .conversation-card {
    padding: 18px 16px;
  }

  .progress-dots {
    margin-bottom: 16px;
  }

  .care-promise {
    gap: 8px;
    border-radius: 20px;
    padding: 14px;
  }

  .care-promise h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .care-cartoon {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .care-cartoon article {
    min-height: 74px;
    gap: 4px;
    border-radius: 14px;
    padding: 7px 4px;
  }

  .care-cartoon svg {
    width: 38px;
    height: 26px;
  }

  .care-cartoon svg circle,
  .care-cartoon svg rect,
  .care-cartoon svg path {
    stroke-width: 3.2;
  }

  .care-cartoon span {
    font-size: 0.64rem;
  }

  .launch-note {
    margin-bottom: 10px;
    font-size: 0.88rem;
  }

  .conversation-step.active {
    gap: 14px;
  }

  .conversation-step h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.6rem);
  }

  .step-copy {
    line-height: 1.5;
  }

  .who-card {
    padding: 10px;
  }

  .who-card input {
    min-height: 68px;
  }

  .conversation-step .who-card input {
    min-height: 68px;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .conversation-actions {
    position: sticky;
    bottom: 8px;
    z-index: 5;
    display: grid;
    margin: 8px -6px -8px;
    border: 1px solid rgba(159, 95, 89, 0.12);
    border-radius: 18px;
    padding: 8px;
    background: rgba(251, 250, 247, 0.86);
    box-shadow: 0 14px 34px rgba(49, 42, 35, 0.12);
    backdrop-filter: blur(12px);
  }

  .conversation-actions .primary-button,
  .conversation-actions .secondary-button {
    width: 100%;
    min-height: 48px;
  }

  .moment-grid,
  .random-note-idea,
  .add-detail-row {
    grid-template-columns: 1fr;
  }

  .choice-grid button,
  .moment-grid button,
  .add-detail-row button {
    min-height: 50px;
  }
}

/* Apple-like public first impression */
.company-hero {
  width: min(100vw - 48px, 1280px);
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  margin: 18px auto 0;
  padding: clamp(42px, 7vw, 86px);
  overflow: hidden;
  border: 1px solid rgba(74, 66, 57, 0.14);
  border-radius: 28px;
  background: rgba(251, 250, 247, 0.78);
  box-shadow: 0 30px 90px rgba(49, 42, 35, 0.1);
}

.company-hero img {
  position: relative;
  inset: auto;
  width: 100%;
  height: min(48vw, 500px);
  min-height: 360px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 22px 60px rgba(49, 42, 35, 0.12);
}

.company-hero .hero-overlay {
  display: none;
}

.company-hero .hero-copy {
  width: auto;
  align-self: center;
  order: -1;
  padding: 0;
  color: var(--ink);
}

.company-hero .hero-copy h1 {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(3.6rem, 6.8vw, 6.7rem);
  line-height: 0.95;
}

.company-hero .hero-copy > p {
  max-width: 560px;
  color: #3f3831;
}

.company-hero .primary-link {
  border-color: #1f1d1a;
  border-radius: 999px;
  background: #1f1d1a;
  color: #fbfaf7;
  padding: 0 24px;
}

.trust-line {
  margin-top: 18px;
  color: #4d463e;
  font-size: 0.94rem;
  font-weight: 700;
}

.four-step {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-section {
  width: min(100vw - 64px, 1280px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) 0;
  border-bottom: 1px solid var(--line);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(36px, 7vw, 76px);
}

.phone-card {
  min-height: 520px;
  display: grid;
  align-content: start;
  gap: 18px;
  border: 10px solid #1f1d1a;
  border-radius: 46px;
  padding: 38px 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 241, 233, 0.88), rgba(251, 250, 247, 0.98) 52%);
  box-shadow: 0 28px 70px rgba(49, 42, 35, 0.16);
}

.phone-card span {
  color: #4d463e;
  font-size: 0.8rem;
  font-weight: 900;
}

.phone-card h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.phone-card p {
  color: var(--muted);
  line-height: 1.55;
}

.mock-input,
.mock-button,
.phone-card li {
  min-height: 46px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(74, 66, 57, 0.14);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #8b8277;
  font-size: 0.9rem;
}

.mock-button {
  justify-content: center;
  background: #e7dccd;
  color: #fff;
  font-weight: 800;
}

.phone-card ul {
  display: grid;
  gap: 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.mock-message {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 6px;
  border-radius: 24px 24px 24px 8px;
  padding: 18px;
  background: #31463b;
  color: #fbfaf7;
  box-shadow: 0 14px 30px rgba(47, 63, 53, 0.16);
}

.mock-message::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -7px;
  width: 16px;
  height: 16px;
  border-bottom-right-radius: 16px;
  background: #31463b;
}

.mock-message strong {
  color: #fbfaf7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.12;
}

.mock-message p {
  margin: 0;
  color: rgba(251, 250, 247, 0.82);
}

.mock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mock-actions span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(74, 66, 57, 0.12);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.74);
  color: #4d463e;
  font-size: 0.82rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .company-hero,
  .experience-section {
    width: min(100vw - 32px, 760px);
  }

  .company-hero {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .company-hero img {
    min-height: 320px;
    height: 56vw;
  }

  .four-step,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .four-step .process-rail {
    top: 42px;
    bottom: 42px;
    left: 34px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .four-step article {
    padding-left: 74px;
    border-right: 0;
    border-bottom: 1px solid rgba(83, 74, 64, 0.22);
  }

  .four-step article::before {
    left: 25px;
  }

  .phone-card {
    min-height: 430px;
  }
}

@media (max-width: 560px) {
  .company-hero {
    width: min(100vw - 18px, 720px);
    border-radius: 22px;
    padding: 24px 18px;
  }

  .company-hero .hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.45rem);
  }

  .company-hero img {
    min-height: 260px;
  }

  .experience-section {
    width: min(100vw - 18px, 720px);
  }
}

/* Softer launch CTAs */
.launch-nav .nav-cta,
.company-hero .primary-link,
.final-cta .primary-link {
  min-height: 44px;
  border: 1px solid rgba(47, 63, 53, 0.18);
  border-radius: 999px;
  background: #31463b;
  box-shadow:
    0 10px 24px rgba(47, 63, 53, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #fbfaf7;
}

.launch-nav .nav-cta {
  padding: 0 18px;
}

.company-hero .primary-link,
.final-cta .primary-link {
  padding: 0 22px;
}

.launch-nav .nav-cta:hover,
.company-hero .primary-link:hover,
.final-cta .primary-link:hover {
  background: #3a5145;
  box-shadow:
    0 12px 28px rgba(47, 63, 53, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Launch day journey clarity */
.journey-section,
.launch-clarity {
  width: min(100vw - 64px, 1280px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) 0;
  border-bottom: 1px solid var(--line);
}

.journey-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(38px, 7vw, 76px);
  border-top: 1px solid rgba(83, 74, 64, 0.22);
  border-left: 1px solid rgba(83, 74, 64, 0.22);
}

.journey-flow article {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid rgba(83, 74, 64, 0.22);
  border-bottom: 1px solid rgba(83, 74, 64, 0.22);
  background: rgba(255, 255, 255, 0.28);
}

.journey-flow span,
.launch-assurance span {
  color: #8f5f43;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.journey-flow h3,
.clarity-card h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.journey-flow h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.08;
}

.journey-flow p,
.clarity-card p:not(.eyebrow),
.launch-assurance p {
  color: var(--muted);
  line-height: 1.62;
}

.launch-clarity {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.clarity-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 310px;
  border: 1px solid rgba(74, 66, 57, 0.16);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(246, 241, 233, 0.34));
}

.clarity-card h2 {
  max-width: 520px;
  font-size: clamp(2.45rem, 4.5vw, 4.5rem);
  line-height: 0.98;
  text-wrap: balance;
}

.clarity-card a,
.launch-assurance a {
  color: #2f3f35;
  font-weight: 900;
}

.conversation-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.launch-note {
  max-width: 620px;
  margin: 0 0 clamp(34px, 6vw, 64px);
  color: #6a5f54;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.5;
}

.launch-assurance {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 620px;
  overflow: hidden;
  border: 1px solid rgba(159, 95, 89, 0.16);
  border-radius: 24px 22px 26px 20px;
  background: rgba(255, 255, 255, 0.48);
}

.launch-assurance article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-right: 1px solid rgba(74, 66, 57, 0.14);
  border-bottom: 1px solid rgba(74, 66, 57, 0.14);
}

.launch-assurance article:nth-child(2n) {
  border-right: 0;
}

.launch-assurance article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.launch-assurance article:last-child {
  border-right: 0;
}

.launch-assurance p {
  font-size: 0.94rem;
}

@media (max-width: 980px) {
  .journey-section,
  .launch-clarity {
    width: min(100vw - 32px, 760px);
  }

  .journey-flow {
    grid-template-columns: 1fr;
  }

  .journey-flow article {
    min-height: auto;
  }

  .launch-clarity,
  .launch-assurance {
    grid-template-columns: 1fr;
  }

  .launch-assurance article {
    border-right: 0;
    border-bottom: 1px solid rgba(74, 66, 57, 0.14);
  }

  .launch-assurance article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .journey-section,
  .launch-clarity {
    width: min(100vw - 18px, 720px);
  }

  .clarity-card {
    border-radius: 22px;
    padding: 26px 20px;
  }

  .launch-note {
    margin-top: 0;
  }
}

/* Launch app activation upgrades */
.moment-date-panel {
  display: grid;
  gap: 10px;
  max-width: 680px;
}

.moment-date-panel:empty {
  display: none;
}

.moment-date-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 190px);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(159, 95, 89, 0.15);
  border-radius: 20px 18px 22px 17px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.54);
}

.moment-date-row span,
.saved-people-section > span {
  color: #554d43;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.moment-date-row input {
  width: 100%;
  min-height: 44px;
  margin-top: 0;
  border-radius: 14px;
  font-size: 0.95rem;
}

.moment-date-hint {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(159, 95, 89, 0.13);
  border-radius: 20px 18px 22px 17px;
  padding: 14px 16px;
  background:
    linear-gradient(135deg, rgba(247, 231, 226, 0.52), rgba(255, 255, 255, 0.46));
}

.moment-date-hint span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.moment-date-hint p {
  color: var(--muted);
  line-height: 1.5;
}

.copy-note-button {
  min-height: 42px;
  margin-top: 18px;
  border: 1px solid rgba(47, 63, 53, 0.18);
  border-radius: 999px;
  padding: 0 18px;
  background: #31463b;
  color: #fbfaf7;
  font-size: 0.88rem;
  font-weight: 900;
}

.take-with-you {
  position: relative;
  max-width: 620px;
  display: grid;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(159, 95, 89, 0.16);
  border-radius: 24px 22px 26px 20px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(238, 242, 237, 0.74), rgba(255, 255, 255, 0.54));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.take-with-you h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-weight: 500;
  line-height: 1.08;
}

.take-with-you p:not(.eyebrow),
.calendar-export-status {
  color: var(--muted);
  line-height: 1.58;
}

.calendar-export-button {
  justify-self: start;
  min-height: 48px;
  border: 1px solid rgba(47, 63, 53, 0.18);
  border-radius: 999px;
  padding: 0 20px;
  background: #31463b;
  color: #fbfaf7;
  font-size: 0.92rem;
  font-weight: 900;
}

.calendar-export-button:disabled {
  cursor: not-allowed;
  border-color: rgba(74, 66, 57, 0.14);
  background: rgba(231, 220, 205, 0.9);
  color: rgba(77, 70, 62, 0.72);
}

.saved-people-section {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(74, 66, 57, 0.18);
  padding-top: 18px;
}

#peopleList {
  display: grid;
  gap: 10px;
}

#peopleList article,
#peopleList button {
  position: relative;
  width: 100%;
  display: grid;
  gap: 5px;
  overflow: hidden;
  border: 1px solid rgba(159, 95, 89, 0.14);
  border-radius: 18px 16px 20px 15px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.58);
  text-align: left;
}

#peopleList button::after {
  content: "\2665";
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(159, 95, 89, 0.46);
  font-size: 0.9rem;
  line-height: 1;
}

#peopleList button {
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

#peopleList button:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 63, 53, 0.28);
  background: rgba(255, 255, 255, 0.74);
}

#peopleList strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.15;
}

#peopleList span,
#peopleList p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

@media (max-width: 560px) {
  .moment-date-row {
    grid-template-columns: 1fr;
  }
}

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

@keyframes keptPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(159, 95, 89, 0);
  }
  45% {
    transform: scale(1.035);
    box-shadow: 0 0 0 7px rgba(159, 95, 89, 0.12);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(159, 95, 89, 0);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .care-cartoon article,
  .choice-grid button.just-kept,
  .moment-grid button.just-kept,
  .random-note-idea,
  .delight-note,
  .peaceful-plan {
    animation: none;
  }

  .memory-letter {
    transition: none;
  }
}
