:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17211d;
  background: #f4f6f2;
  font-synthesis: none;
  --forest: #173f32;
  --forest-soft: #2d624e;
  --lime: #d9f2c8;
  --paper: #fffefb;
  --line: #d8e0da;
  --muted: #68756f;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 85% 0%, rgb(217 242 200 / 80%), transparent 34rem),
    #f4f6f2;
}

body {
  min-height: 100vh;
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  display: flex;
  max-width: 1180px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 24px 28px;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: inherit;
  font-size: 1.02rem;
  font-weight: 780;
  text-decoration: none;
}

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

.brand__wordmark {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.header-login {
  margin-left: auto;
  border: 1px solid #b8c8bd;
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--forest);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 750;
  background: rgb(255 255 255 / 72%);
  cursor: pointer;
}

.product-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: auto;
  padding: 0 24px;
}

.product-nav a {
  color: #52615a;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.product-nav a:hover,
.product-nav a[aria-current="page"] {
  color: var(--forest);
}

.header-actions,
.language-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
}

.language-switcher {
  gap: 5px;
  color: #8a958f;
  font-size: 0.72rem;
}

.language-switcher button {
  border: 0;
  padding: 6px 3px;
  color: #718078;
  font: inherit;
  font-weight: 760;
  background: transparent;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: var(--forest);
}

.account-controls {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #42534b;
  font-size: 0.85rem;
  font-weight: 700;
}

.account-controls img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

main {
  width: min(1124px, calc(100% - 40px));
  min-height: calc(100vh - 178px);
  margin: 0 auto;
}

.message {
  position: fixed;
  z-index: 1200;
  top: 88px;
  right: max(20px, calc((100vw - 1180px) / 2));
  width: min(420px, calc(100vw - 40px));
  margin: 0;
  border: 1px solid #bcd4c3;
  border-radius: 14px;
  padding: 13px 16px;
  color: var(--forest);
  background: #eff9ed;
  box-shadow: 0 16px 44px rgb(25 55 44 / 18%);
}

.message--error {
  color: #842d25;
  border-color: #e3bbb5;
  background: #fff7f5;
}

.auth-terms {
  display: none;
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}

.auth-terms a {
  color: var(--forest);
}

html[data-language="de"] .auth-terms[data-auth-lang="de"],
html[data-language="en"] .auth-terms[data-auth-lang="en"] {
  display: block;
}

.landing {
  padding-bottom: 80px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
  min-height: 720px;
  padding: clamp(46px, 7vw, 92px) 0 110px;
}

.eyebrow {
  color: #52725f;
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(2.55rem, 4.25vw, 4.35rem);
  line-height: 1.01;
}

h2 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.hero__lead {
  max-width: 620px;
  color: #55635d;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero__benefits {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  color: #3f5249;
  list-style: none;
}

.hero__benefits li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero__benefits b {
  font-weight: 650;
}

.hero__benefits span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 850;
  background: var(--lime);
}

.hero__actions,
.group-heading__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.my-groups {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.my-group-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.my-group-list button {
  border: 1px solid #bdd0c2;
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--forest);
  font-weight: 720;
  background: rgb(255 255 255 / 75%);
  cursor: pointer;
}

.manage-groups-link {
  margin-top: 10px;
  padding-left: 0;
}

.google-sign-in {
  min-height: 44px;
  margin: 26px 0 12px;
}

.hero__visual {
  position: relative;
  min-height: 600px;
}

.browser-demo {
  position: absolute;
  inset: 20px 0 34px 24px;
  overflow: hidden;
  border: 1px solid #bdccc2;
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 36px 90px rgb(20 59 45 / 18%);
  transform: rotate(1.2deg);
}

.browser-demo__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 28px;
  gap: 12px;
  align-items: center;
  height: 46px;
  padding: 0 13px;
  border-bottom: 1px solid #dfe6e0;
  background: #f7f8f6;
}

.browser-demo__dots {
  display: flex;
  gap: 5px;
}

.browser-demo__dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8c3bc;
}

.browser-demo__address {
  overflow: hidden;
  border: 1px solid #dce3dd;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--muted);
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #fff;
}

.browser-demo__bar img {
  width: 27px;
  height: 27px;
}

.browser-demo__body {
  display: grid;
  grid-template-columns: 42% 58%;
  height: calc(100% - 46px);
}

.shop-preview {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  padding: 22px 15px;
  background: #f8f6f1;
}

.shop-preview__brand {
  color: #6a665f;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.shop-preview img {
  width: 100%;
  align-self: center;
  border-radius: 16px;
}

.shop-preview__label {
  font-size: 0.72rem;
  font-weight: 750;
}

.sidebar-preview {
  display: grid;
  align-content: start;
  gap: 9px;
  overflow: hidden;
  padding: 14px;
  border-left: 1px solid #dfe6e0;
  background: linear-gradient(145deg, #f9fbf8, #edf6e9);
}

.sidebar-preview__header {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #dce6dc;
  font-size: 0.72rem;
}

.sidebar-preview__header img {
  width: 30px;
  height: 30px;
}

.sidebar-preview__account,
.sidebar-preview__product,
.sidebar-preview__form,
.sidebar-preview__thread {
  border: 1px solid #dce4dd;
  border-radius: 13px;
  background: rgb(255 255 255 / 92%);
}

.sidebar-preview__account {
  padding: 9px 10px;
  color: #68756f;
  font-size: 0.58rem;
}

.sidebar-preview__product {
  overflow: hidden;
}

.sidebar-preview__product > img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.sidebar-preview__product > div {
  display: grid;
  gap: 3px;
  padding: 10px;
}

.sidebar-preview__product span,
.sidebar-preview__product small {
  color: #52725f;
  font-size: 0.52rem;
  font-weight: 750;
}

.sidebar-preview__product strong {
  font-size: 0.72rem;
  line-height: 1.25;
}

.sidebar-preview__form {
  display: grid;
  gap: 6px;
  padding: 10px;
  font-size: 0.56rem;
}

.sidebar-preview__form > strong,
.sidebar-preview__form p {
  margin: 0;
  border: 1px solid #cbd6ce;
  border-radius: 8px;
  padding: 7px;
  font-size: 0.58rem;
  background: #fff;
}

.sidebar-preview__form b {
  border-radius: 8px;
  padding: 8px;
  color: #fff;
  text-align: center;
  background: var(--forest);
}

.sidebar-preview__thread {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  padding: 7px;
}

.sidebar-preview__thread img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.sidebar-preview__thread span {
  display: grid;
  min-width: 0;
  font-size: 0.54rem;
}

.sidebar-preview__thread small {
  color: var(--muted);
}

.sidebar-preview__thread em {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 800;
  background: var(--forest);
}

.chat-bubble {
  position: absolute;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  width: min(300px, 62%);
  border: 1px solid rgb(196 212 200 / 92%);
  border-radius: 18px;
  padding: 13px;
  background: rgb(255 254 251 / 96%);
  box-shadow: 0 18px 48px rgb(24 61 47 / 16%);
  backdrop-filter: blur(12px);
}

.chat-bubble p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
}

.chat-bubble--left {
  bottom: 0;
  left: 0;
  transform: rotate(-2deg);
}

.chat-bubble--right {
  top: 0;
  right: -18px;
  transform: rotate(2deg);
}

.chat-bubble__mark {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  color: var(--forest);
  font-weight: 850;
  background: var(--lime);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.feature-grid article {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 34px);
  background: rgb(255 254 251 / 78%);
}

.feature-grid__number {
  display: block;
  margin-bottom: 42px;
  color: #7c9587;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.feature-grid h2 {
  max-width: 260px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.how-it-works {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
  margin-top: 100px;
  border-top: 1px solid var(--line);
  padding-top: 72px;
}

.how-it-works h2 {
  max-width: 470px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.how-it-works ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.how-it-works li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.how-it-works li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--forest);
  font-weight: 800;
  background: var(--lime);
}

.how-it-works li p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.how-it-works li strong {
  color: #17211d;
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  font-weight: 800;
  background: var(--lime);
}

.primary-button,
.secondary-button,
.text-button,
.icon-button {
  border-radius: 13px;
  font-weight: 750;
  cursor: pointer;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
}

.primary-button {
  border: 1px solid var(--forest);
  color: #fff;
  background: var(--forest);
  box-shadow: 0 8px 18px rgb(23 63 50 / 14%);
}

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

.secondary-button {
  border: 1px solid #b8c8bd;
  color: var(--forest);
  background: rgb(255 255 255 / 75%);
}

.danger-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddb9b3;
  border-radius: 13px;
  padding: 10px 16px;
  color: #8b3127;
  font-weight: 750;
  background: #fff8f6;
  cursor: pointer;
}

.compact-button {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 0.82rem;
}

.text-button {
  border: 0;
  padding: 10px;
  color: var(--forest-soft);
  background: transparent;
}

.text-button--back {
  margin: 18px 0;
  padding-left: 0;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid #c6d2ca;
  color: var(--forest);
  background: #fff;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bdc9c1;
  border-radius: 13px;
  padding: 13px 14px;
  color: #17211d;
  background: #fff;
}

textarea {
  resize: vertical;
}

label {
  margin-top: 4px;
  color: #344a41;
  font-size: 0.84rem;
  font-weight: 720;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgb(84 173 106 / 38%);
  outline-offset: 3px;
}

.form-card {
  max-width: 560px;
  margin: 55px auto;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(26px, 5vw, 48px);
  background: var(--paper);
  box-shadow: 0 28px 80px rgb(25 55 44 / 9%);
}

.form-card h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
}

.manage-view {
  padding: 36px 0 80px;
}

.management-heading {
  display: flex;
  gap: 32px;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 24px 0 32px;
}

.management-heading h1 {
  max-width: 820px;
  margin: 4px 0 14px;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.management-heading p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.management-heading__actions,
.management-row__actions,
.management-invite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.management-invitations {
  margin-top: 28px;
  border: 1px solid #c6d9ca;
  border-radius: 22px;
  padding: 22px;
  background: #eef8eb;
}

.management-invitation-list,
.management-group-list {
  display: grid;
  gap: 16px;
}

.management-invitation {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 15px;
  background: #fff;
}

.management-invitation h3,
.management-invitation p {
  margin-bottom: 3px;
}

.management-group-list {
  margin-top: 28px;
}

.management-group-card {
  scroll-margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(20px, 4vw, 32px);
  background: rgb(255 254 251 / 92%);
  box-shadow: 0 18px 54px rgb(25 55 44 / 7%);
}

.management-card__header {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
}

.management-card__header h2 {
  margin: 6px 0;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.role-badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--lime);
}

.management-rename-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  align-items: end;
  margin-top: 24px;
}

.management-rename-form label {
  grid-column: 1 / -1;
}

.management-card__section {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.management-card__section h3 {
  margin-bottom: 12px;
}

.management-member-list,
.management-contact-choices {
  display: grid;
  gap: 9px;
}

.management-member-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e1e7e2;
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
}

.management-member-row__identity {
  display: flex;
  min-width: 0;
  gap: 10px;
  align-items: center;
}

.management-member-row__identity > span:last-child {
  display: grid;
  min-width: 0;
}

.management-member-row small {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.management-outgoing-row {
  align-items: flex-start;
}

.management-link-avatar {
  flex: 0 0 auto;
  color: var(--forest);
  background: var(--lime);
}

.invitation-status {
  width: max-content;
  margin-top: 4px;
  border-radius: 999px;
  padding: 3px 7px;
  color: var(--forest);
  font-size: 0.66rem;
  font-weight: 800;
  background: #edf4ed;
}

.text-button--danger {
  color: #8b3029;
}

.management-outgoing-empty {
  margin-bottom: 0;
}

.avatar--image {
  object-fit: cover;
}

.management-contact-form {
  display: grid;
  gap: 10px;
}

.management-contact-choice {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid #e1e7e2;
  border-radius: 14px;
  padding: 9px 11px;
  background: #fff;
}

.management-contact-choice input {
  width: auto;
  margin: 0;
}

.management-contact-choice .avatar {
  width: 34px;
  height: 34px;
  font-size: 0.78rem;
}

.management-email-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  margin: 12px 0;
}

.management-invite-result {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  border-radius: 14px;
  padding: 11px;
  background: #edf4ed;
}

.management-invite-result code {
  overflow-wrap: anywhere;
  color: var(--forest);
  font-weight: 800;
}

.management-group-card > .danger-button {
  margin-top: 24px;
}

.management-danger-zone {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  border: 1px solid #e3bab5;
  border-radius: 16px;
  padding: 16px;
  background: #fff7f5;
}

.management-danger-zone h3,
.management-danger-zone p {
  margin-bottom: 3px;
}

.management-danger-zone .danger-button {
  flex: 0 0 auto;
}

.form-card form,
.reply-form {
  display: grid;
  gap: 10px;
}

.group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 55px 0 34px;
  border-bottom: 1px solid var(--line);
}

.group-heading h1 {
  margin-bottom: 8px;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.group-heading__actions {
  justify-content: flex-end;
  margin: 0;
}

.muted {
  color: var(--muted);
  font-size: 0.88rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 32px;
  padding: 34px 0 70px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-heading h2 {
  margin: 0;
}

.thread-list {
  display: grid;
  gap: 12px;
}

.thread-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  color: inherit;
  text-align: left;
  background: rgb(255 254 251 / 90%);
  cursor: pointer;
}

.thread-card:hover {
  border-color: #a8bdad;
  transform: translateY(-1px);
}

.thread-card__image-wrap {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: #edf2ed;
}

.thread-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.thread-card__content {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.thread-card__title,
.thread-card__question {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thread-card__question {
  color: #42534b;
}

.thread-card__arrow {
  padding: 12px;
  color: var(--forest);
  font-size: 1.3rem;
}

.members-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: rgb(255 254 251 / 72%);
}

.members-card {
  align-self: start;
}

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

.members-card li {
  display: flex;
  gap: 9px;
  align-items: center;
}

.empty-state {
  padding: 45px 20px;
  text-align: center;
}

.empty-state__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 16px;
  color: var(--forest);
  font-size: 1.4rem;
  background: var(--lime);
}

.thread-product {
  display: grid;
  grid-template-columns: minmax(180px, 340px) 1fr;
  gap: clamp(24px, 6vw, 70px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(22px, 5vw, 48px);
  background: var(--paper);
}

.thread-product img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 18px;
}

.thread-product h1 {
  margin: 8px 0 14px;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.post-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.7rem;
  color: inherit;
  text-decoration: none;
  background: #f8faf7;
}

.post-link img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.6rem;
  object-fit: contain;
  background: #fff;
}

.price {
  color: var(--forest);
  font-size: 1.2rem;
  font-weight: 780;
}

.external-link {
  color: var(--forest-soft);
  font-weight: 720;
}

.conversation {
  max-width: 760px;
  margin: 26px auto 80px;
}

.question-card,
.post-list article,
.reply-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: rgb(255 254 251 / 86%);
}

.question-card p {
  margin-bottom: 10px;
  font-size: 1.13rem;
  line-height: 1.55;
}

.post-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.post-list article p {
  margin: 7px 0 0;
  white-space: pre-wrap;
}

.reply-form {
  margin-top: 18px;
}

.site-footer {
  display: grid;
  gap: 8px;
  justify-items: center;
  border-top: 1px solid var(--line);
  padding: 34px 24px;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer__brand {
  color: var(--forest) !important;
  font-size: 0.88rem;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.site-footer nav a:hover {
  color: var(--forest);
}

[hidden] {
  display: none !important;
}

@media (max-width: 760px) {
  .message {
    top: 76px;
    right: 16px;
    width: calc(100vw - 32px);
  }

  .site-header {
    flex-wrap: wrap;
    padding: 18px 20px;
  }

  .product-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin: 6px 0 0;
    border-top: 1px solid rgb(23 63 50 / 10%);
    padding: 14px 0 0;
  }

  main {
    width: min(100% - 28px, 680px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 0 76px;
  }

  .hero__visual {
    min-height: 570px;
  }

  .browser-demo {
    inset: 20px 8px 34px 18px;
  }

  .feature-grid,
  .how-it-works {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: auto;
  }

  .feature-grid__number {
    margin-bottom: 24px;
  }

  .how-it-works {
    margin-top: 70px;
    padding-top: 54px;
  }

  .group-heading {
    display: block;
    padding-top: 40px;
  }

  .management-heading,
  .management-invitation {
    display: grid;
  }

  .management-heading {
    align-items: start;
  }

  .management-rename-form,
  .management-email-form {
    grid-template-columns: 1fr;
  }

  .management-danger-zone {
    align-items: stretch;
    flex-direction: column;
  }

  .management-rename-form label {
    grid-column: auto;
  }

  .group-heading__actions {
    justify-content: flex-start;
    margin-top: 20px;
  }

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

  .members-card {
    order: -1;
  }

  .thread-product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 12px;
    align-items: flex-start;
  }

  .brand__wordmark {
    display: none;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .account-controls {
    max-width: 190px;
  }

  .account-controls #account-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.45rem);
  }

  .hero__visual {
    min-height: 620px;
  }

  .browser-demo {
    inset-inline: 0;
  }

  .browser-demo__body {
    grid-template-columns: 1fr;
  }

  .shop-preview {
    display: none;
  }

  .sidebar-preview {
    border-left: 0;
  }

  .chat-bubble {
    width: min(280px, 82%);
  }

  .chat-bubble--right {
    right: -6px;
  }

  .hero__actions,
  .group-heading__actions {
    display: grid;
  }

  .thread-card {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .thread-card__image-wrap {
    width: 70px;
    height: 70px;
  }

  .thread-card__arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
