/* ============================================================
   Relate — landing page
   Faithful reproduction of the Figma Make design
   (file: Relationship-Manager-Website / QCZEy6BamUCMPTuPiLDYPI)
   ============================================================ */

:root {
  --sage:           #8BA888;
  --sage-dark:      #7A9777;
  --clay:           #D4917E;
  --bg-cream:       #F8F6F1;
  --bg-cream-deep:  #E8E4DC;
  --surface:        #FFFFFF;
  --text:           #2C3333;
  --text-secondary: #6B7280;
  --text-muted:     #9CA3AF;
  --border:         #E5E7EB;
  --pink-a:         #FFB3BA;
  --pink-b:         #FFD4D4;
  --footer-bg:      #2C3333;
  --font-display:   "Fraunces", "Georgia", "Times New Roman", serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg-cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: 80rem;          /* max-w-7xl */
  margin: 0 auto;
  padding-left: 1.5rem;      /* px-6 */
  padding-right: 1.5rem;
}

/* ---------- Icons (lucide-style inline SVG) ---------- */
.ico {
  width: 1.25rem; height: 1.25rem;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.ico--sm { width: 1rem; height: 1rem; }
.ico--lg { width: 2rem; height: 2rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn--center { margin: 0 auto; }

.btn--primary {
  background: var(--sage); color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
}
.btn--primary:hover { background: var(--sage-dark); }
.btn--lg.btn--primary { box-shadow: 0 10px 15px -3px rgba(0,0,0,.12), 0 4px 6px -4px rgba(0,0,0,.1); }

.btn--ghost {
  background: #fff; color: var(--text);
  border-color: #e5e7eb;
}
.btn--ghost:hover { background: #F5F5F4; }

.btn--white {
  background: #fff; color: var(--sage);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.12), 0 4px 6px -4px rgba(0,0,0,.1);
}
.btn--white:hover { background: var(--bg-cream); }

.btn--glass {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
}
.btn--glass:hover { background: rgba(255,255,255,.2); }

/* ---------- Brand / logo ---------- */
.brand { display: inline-flex; align-items: center; gap: .25rem; text-decoration: none; }
.brand__icon { width: 3.75rem; height: 3.75rem; object-fit: contain; flex-shrink: 0; }
.brand__name { font-size: 1.375rem; font-weight: 300; color: var(--text); letter-spacing: -0.01em; line-height: 1.15; text-decoration: none; }
.brand--footer .brand__icon--sm { width: 3.25rem; height: 3.25rem; }
.brand__name--light { color: #fff; font-size: 1.25rem; }

/* Brand lockup with parent-company link ("by Soulware") */
.brand__home { display: inline-flex; flex-shrink: 0; }
.brand__lines { display: flex; flex-direction: column; gap: .1rem; }
.brand__by {
  display: inline-flex; align-items: center; align-self: flex-start; gap: .25rem;
  font-size: .8rem; font-weight: 400; color: var(--text-muted);
  text-decoration: none; line-height: 1; transition: color .15s ease;
}
.brand__by:hover { color: var(--sage-dark); }
.brand__by-ico {
  width: .7rem; height: .7rem; fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; transition: transform .15s ease;
}
.brand__by:hover .brand__by-ico { transform: translate(1px, -1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--bg-cream); }
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(139,168,136,.10), transparent);
  pointer-events: none;
}
.hero__inner { position: relative; padding-top: 4rem; padding-bottom: 4rem; }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4rem;
}
.nav__actions { display: flex; align-items: center; gap: .75rem; }

.hero__content { text-align: center; max-width: 56rem; margin: 0 auto; }
.hero__title {
  font-size: 3rem; font-weight: 300; line-height: 1.1;
  color: var(--text); margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.hero__subtitle {
  font-size: 1.25rem; color: var(--text-secondary);
  line-height: 1.6; margin: 0 auto 2.5rem; max-width: 42rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 0; }
.section--white { background: #fff; }
.section--cream-fade { background: linear-gradient(to bottom, var(--bg-cream), var(--bg-cream-deep)); }

.section__head { text-align: center; margin-bottom: 4rem; }

.h2 {
  font-size: 2.25rem; font-weight: 300; color: var(--text);
  margin: 0 0 1.5rem; line-height: 1.2; letter-spacing: -0.01em;
}
.h2--center, .features__title { text-align: center; }
.features__title { margin-bottom: 4rem; }

.h3 { font-size: 1.5rem; font-weight: 300; color: var(--text); margin: 0 0 .5rem; line-height: 1.3; }

.lead { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.7; margin: 0; }
.lead--narrow { max-width: 42rem; margin: 0 auto; }
.prose-center { max-width: 48rem; margin: 0 auto; text-align: center; }

.muted { color: var(--text-secondary); margin: 0; }

/* ---------- Feature icon chips ---------- */
.feature-ico {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-ico--lg { width: 4rem; height: 4rem; border-radius: 1rem; margin: 0 auto 1rem; }
.feature-ico--sage { background: linear-gradient(135deg, rgba(139,168,136,.2), rgba(139,168,136,.1)); color: var(--sage); }
.feature-ico--clay { background: linear-gradient(135deg, rgba(212,145,126,.2), rgba(212,145,126,.1)); color: var(--clay); }

/* ============================================================
   PREVIEW CARDS
   ============================================================ */
.preview-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 64rem; margin: 0 auto;
}
.preview-card {
  background: #fff; border-radius: 1.5rem; padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.05);
}
.preview-card__head { margin-bottom: 1.5rem; }

.mock {
  background: var(--bg-cream); border: 2px solid var(--border);
  border-radius: 1rem; padding: 1.5rem;
}

/* ---------- Calendar mockup ---------- */
.cal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal__month { font-size: 1rem; font-weight: 500; color: var(--text); margin: 0; }
.cal__nav {
  width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); background: transparent; border: 0; border-radius: .5rem;
  cursor: pointer; transition: background-color .2s;
}
.cal__nav:hover { background: #fff; }

.cal__week { display: grid; grid-template-columns: repeat(7,1fr); gap: .25rem; margin-bottom: .5rem; }
.cal__cell { text-align: center; }
.cal__dow { display: block; font-size: .75rem; color: var(--text-secondary); margin-bottom: .25rem; }
.cal__day {
  background: #fff; border: 1px solid var(--border); border-radius: .5rem;
  padding: .5rem .25rem; min-height: 2.25rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.cal__day--dashed { background: rgba(255,255,255,.5); border-style: dashed; }
.cal__day--active { background: var(--sage); border-color: var(--sage); box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); }
.cal__num { font-size: .875rem; color: var(--text); }
.cal__num--mut { color: var(--text-muted); font-size: .75rem; }
.cal__num--on { color: #fff; font-weight: 500; }
.cal__dot { width: .25rem; height: .25rem; background: #fff; border-radius: 9999px; margin-top: .25rem; }

/* ---------- Events list ---------- */
.event-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.event {
  display: flex; align-items: center; gap: .75rem;
  background: #fff; padding: .75rem; border-radius: .75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.event__avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.event__avatar--pink { background: linear-gradient(135deg, var(--pink-a), var(--pink-b)); }
.event__body { min-width: 0; }
.event__name { font-size: .875rem; font-weight: 500; color: var(--text); margin: 0; }
.event__meta { font-size: .75rem; color: var(--text-secondary); margin: 0; }

/* ---------- Chat mockup ---------- */
.chat { display: flex; flex-direction: column; gap: 1rem; }
.chat__bubble { background: #fff; padding: 1rem; border-radius: .75rem; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.chat__text { font-size: .875rem; color: var(--text); margin: 0 0 .75rem; }
.chat__row { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.chat__avatar {
  width: 2rem; height: 2rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212,145,126,.2), rgba(212,145,126,.1));
}
.chat__label { font-size: .75rem; font-weight: 500; color: var(--text); margin: 0; }
.chat__sub { font-size: .75rem; color: var(--text-secondary); margin: 0 0 .75rem; }
.chat__actions { display: flex; gap: .5rem; flex-wrap: wrap; }

.pill {
  border-radius: 9999px; font-size: .75rem; cursor: pointer;
  padding: .5rem 1rem; border: 2px solid var(--border); background: #fff; color: var(--text);
  transition: background-color .2s, color .2s;
}
.pill--sage { background: var(--sage); color: #fff; border-color: var(--sage); padding: .375rem .75rem; }
.pill--sage:hover { background: var(--sage-dark); }
.pill--sage-outline { background: #fff; color: var(--sage); border: 1px solid var(--sage); padding: .375rem .75rem; }
.pill--sage-outline:hover { background: rgba(139,168,136,.08); }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.feature { text-align: center; }
.feature__title { font-size: 1.25rem; font-weight: 300; color: var(--text); margin: 0 0 .5rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: 5rem 0; background: linear-gradient(to bottom, var(--sage), var(--sage-dark)); }
.cta__inner { max-width: 56rem; text-align: center; }
.cta__title { color: #fff; }
.cta__sub { font-size: 1.25rem; color: rgba(255,255,255,.9); margin: 0 0 2.5rem; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 3rem 0; background: var(--footer-bg); }
.footer__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.footer__copy { color: rgba(255,255,255,.6); font-size: .875rem; margin: 0; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { color: rgba(255,255,255,.6); font-size: .875rem; text-decoration: none; transition: color .2s; }
.footer__links a:hover { color: #fff; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { padding: 3rem 0 5rem; }
.legal__top {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem; margin-bottom: 2.5rem;
}
.legal__back { color: var(--sage); text-decoration: none; font-weight: 500; font-size: .95rem; }
.legal__back:hover { color: var(--sage-dark); }
.legal__doc { max-width: 46rem; margin: 0 auto; }
.legal__doc h1 { font-size: 2.5rem; font-weight: 300; letter-spacing: -0.01em; margin: 0 0 .5rem; }
.legal__updated { color: var(--text-muted); font-size: .875rem; margin: 0 0 2.5rem; }
.legal__doc h2 { font-size: 1.375rem; font-weight: 500; margin: 2.25rem 0 .75rem; }
.legal__doc p, .legal__doc li { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }
.legal__doc ul { padding-left: 1.25rem; }
.legal__doc li { margin-bottom: .5rem; }
.legal__doc a { color: var(--sage); }
.legal__note {
  background: var(--bg-cream); border: 1px solid var(--border);
  border-radius: .75rem; padding: 1rem 1.25rem; margin-bottom: 2.5rem;
  color: var(--text-secondary); font-size: .875rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 768px) {
  .hero__inner { padding-top: 6rem; padding-bottom: 6rem; }
  .hero__title { font-size: 4.5rem; }
  .hero__subtitle { font-size: 1.5rem; }
  .h2 { font-size: 3rem; }
}

@media (max-width: 880px) {
  .preview-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .features { grid-template-columns: 1fr; }
  .nav { margin-bottom: 2.5rem; }
  .brand__icon { width: 3rem; height: 3rem; }
  .brand__name { font-size: 1.125rem; }
  .nav__actions .btn--ghost { display: none; }
  .footer__inner { flex-direction: column; text-align: center; }
  .hero__title { font-size: 2.5rem; }
}

/* ============================================================
   SOULWARE HOMEPAGE
   Shares the same tokens/components as the Ivy page so the
   company site and the product page feel like one world.
   ============================================================ */

/* Editorial display face — homepage headings only, so the product
   subpages keep their lighter Inter voice. */
.home .h2, .home .app-card__name, .home .value h3 {
  font-family: var(--font-display); font-weight: 500; letter-spacing: -0.015em;
}

/* ---- Sticky site nav ---- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,246,241,.8);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(44,51,51,.06);
}
.site-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4.5rem;
}
.swmark { display: inline-flex; align-items: center; gap: .625rem; text-decoration: none; }
.swmark__glyph {
  width: 2.25rem; height: 2.25rem; border-radius: .7rem; flex-shrink: 0;
  box-shadow: 0 4px 10px -2px rgba(44,51,51,.25);
}
.swmark__name { font-size: 1.25rem; font-weight: 500; color: var(--text); letter-spacing: -0.01em; }
.site-nav__links { display: flex; align-items: center; gap: 1.75rem; }
.site-nav__link { color: var(--text-secondary); text-decoration: none; font-size: .95rem; transition: color .2s; }
.site-nav__link:hover { color: var(--text); }
.site-nav__cta { color: #fff; padding: .55rem 1.2rem; }
.site-nav__cta:hover { color: #fff; }

/* ---- Home hero ---- */
.home-hero { position: relative; overflow: hidden; text-align: center; }
.home-hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60rem 30rem at 50% -12%, rgba(139,168,136,.18), transparent 60%),
    radial-gradient(44rem 26rem at 85% 8%, rgba(212,145,126,.12), transparent 60%),
    radial-gradient(40rem 26rem at 12% 34%, rgba(124,77,255,.06), transparent 60%);
}
.home-hero__inner { position: relative; padding: 5.5rem 0 4.5rem; }
.eyebrow {
  display: inline-block; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage-dark, #6B8A68); font-weight: 600; margin-bottom: 1.25rem;
}
.home-hero h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.75rem, 6.4vw, 4.75rem); line-height: 1.04;
  letter-spacing: -0.015em; color: var(--text); margin: 0 auto 1.5rem; max-width: 15ch;
}
.home-hero h1 em { font-style: italic; color: var(--sage); }
.home-hero__sub {
  font-size: 1.25rem; color: var(--text-secondary); line-height: 1.6;
  max-width: 40rem; margin: 0 auto 2.25rem;
}
.home-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- App dock (hero preview) ---- */
.dock {
  display: inline-flex; gap: 2.75rem; justify-content: center;
  margin-top: 3.5rem; padding-top: 2.25rem;
  border-top: 1px solid rgba(44,51,51,.08);
}
.dock__app {
  display: inline-flex; flex-direction: column; align-items: center; gap: .65rem;
  text-decoration: none; color: var(--text-secondary);
}
.dock__icon-wrap { display: inline-flex; transition: transform .25s ease; }
.dock__icon { width: 3.5rem; height: 3.5rem; object-fit: contain; filter: drop-shadow(0 10px 16px rgba(44,51,51,.18)); }
.dock__app:hover .dock__icon-wrap { transform: translateY(-4px); }
.dock__name { font-size: .9rem; font-weight: 500; }
.dock__app:hover .dock__name { color: var(--text); }

/* ---- Our apps (branded cards) ---- */
.apps { padding: 5.5rem 0; }
.apps__head { text-align: center; max-width: 42rem; margin: 0 auto 3.25rem; }
.apps__head .eyebrow { color: var(--clay); }
.apps__head .h2 { margin: 0 0 1rem; }
.apps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: 1.75rem;
  max-width: 70rem; margin: 0 auto;
}
.app-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border);
  border-radius: 1.6rem; padding: 2rem 1.9rem 1.9rem;
  text-decoration: none; color: inherit;
  box-shadow: 0 22px 44px -28px rgba(44,51,51,.22);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.app-card__strip {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent-grad, var(--accent)); opacity: .95;
}
.app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 72px -34px rgba(44,51,51,.34);
  border-color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
}
.app-card__top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.35rem;
}
.app-card__icon-wrap { position: relative; display: inline-flex; }
.app-card__icon-wrap::before {
  content: ""; position: absolute; inset: -26%;
  background: var(--accent-soft); border-radius: 50%; filter: blur(16px); z-index: 0;
}
.app-card__icon {
  position: relative; z-index: 1;
  width: 4.75rem; height: 4.75rem; object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(44,51,51,.16));
}
.app-card__chip {
  align-self: center;
  font-size: .7rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft);
  padding: .4rem .75rem; border-radius: 9999px; white-space: nowrap;
}
.app-card__name { font-size: 1.4rem; color: var(--text); margin: 0 0 .35rem; }
.app-card__tagline { font-size: 1.02rem; font-weight: 500; color: var(--accent); margin: 0 0 .7rem; }
.app-card__desc { font-size: .96rem; color: var(--text-secondary); line-height: 1.62; margin: 0 0 1.6rem; }
.app-card__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .95rem; font-weight: 600; color: var(--accent); text-decoration: none;
}
.app-card__arrow { transition: transform .25s ease; }
.app-card:hover .app-card__arrow { transform: translateX(4px); }

/* Coming-soon card */
.app-card--soon {
  justify-content: center;
  background: linear-gradient(160deg, #fff, var(--bg-cream));
  border-style: dashed; box-shadow: none;
}
.app-card--soon:hover { transform: none; box-shadow: none; border-color: var(--border); }
.app-card__soon-badge {
  font-size: .7rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.35rem;
}
.app-card__soon-mark {
  width: 3.25rem; height: 3.25rem; border-radius: 1rem; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--border); color: var(--text-muted);
}
.app-card__soon-mark svg { width: 1.5rem; height: 1.5rem; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linejoin: round; }
.app-card__cta--link { color: var(--sage-dark); }

/* ---- Values ---- */
.values { padding: 5rem 0; background: linear-gradient(to bottom, #fff, var(--bg-cream)); }
.values__head { text-align: center; max-width: 40rem; margin: 0 auto 3rem; }
.values__head .h2 { margin: 0 0 1rem; }
.values__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
.value { text-align: center; }
.value__ico {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem; margin: 0 auto 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.value h3 { font-size: 1.2rem; color: var(--text); margin: 0 0 .5rem; }

/* ---- Contact ---- */
.contact { padding: 5rem 0; background: linear-gradient(to bottom, var(--bg-cream), var(--bg-cream-deep)); }
.contact__inner { max-width: 40rem; margin: 0 auto; text-align: center; }
.contact__form { margin-top: 2.25rem; text-align: left; display: grid; gap: 1rem; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .85rem; font-weight: 500; color: var(--text); margin-bottom: .4rem; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--text);
  background: #fff; border: 1px solid var(--border); border-radius: .75rem;
  padding: .8rem 1rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(139,168,136,.18);
}
.field textarea { resize: vertical; min-height: 7rem; }
.contact__submit { justify-self: start; }
.contact__note { font-size: .85rem; color: var(--text-muted); margin-top: .5rem; }
.form-status { font-size: .95rem; margin-top: .25rem; min-height: 1.2rem; }
.form-status--ok { color: var(--success-green, #7FB069); }
.form-status--err { color: var(--error-rose, #D97676); }

/* ---- "Part of Soulware" tag on product page ---- */
.sw-tag { display: inline-flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.6); text-decoration: none; font-size: .875rem; }
.sw-tag:hover { color: #fff; }
.sw-tag__glyph { width: 1.1rem; height: 1.1rem; border-radius: .35rem; }

@media (max-width: 880px) {
  .values__grid { grid-template-columns: 1fr; gap: 2.25rem; max-width: 24rem; margin: 0 auto; }
}
@media (max-width: 640px) {
  .site-nav__links { gap: .9rem; }
  .site-nav__link--hide { display: none; }
  .site-nav__cta { padding: .5rem 1rem; }
  .contact__row { grid-template-columns: 1fr; }
  .home-hero__inner { padding: 3.5rem 0 3rem; }
  .dock { gap: 2rem; margin-top: 2.5rem; }
  .app-card { padding: 1.75rem 1.5rem; }
}
