/* Hero */
.hero {
  padding-top: 65px;
  padding-bottom: 72px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 0 auto 25px;
  padding: 7px 13px;
  border: 1px solid #d9c5ec;
  border-radius: 999px;
  background: #f2ecf7;
  color: #60239c;
  font-size: var(--font-size-secondary);
  font-weight: 300;
  line-height: 14px;
}

.hero h1 {
  font-size: 45px;
}

.platform-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 37px;
  font-size: var(--font-size-micro);
}

.platform {
  display: flex;
  min-height: 37px;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  color: #454545;
  font-weight: 300;
}

.platform:focus-visible {
  outline: 3px solid rgba(157, 58, 255, 0.24);
  outline-offset: 2px;
}

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 6px;
}

.platform-icon img {
  width: 11px;
  height: 11px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.platform-facebook .platform-icon {
  background: #1877f2;
}

.platform-tiktok .platform-icon {
  background: #111;
}

.platform-instagram .platform-icon {
  background: linear-gradient(135deg, #7d3cff, #f5487f 55%, #ffbd43);
}

/* Main content sections */
.live-shopping,
.magic-link,
.management,
.ecosystem,
.support,
.daily-tools,
.final-cta {
  margin-top: 0;
  padding-top: 88px;
  padding-bottom: 88px;
}

.hero-actions .button {
  font-weight: 400;
}

.live-shopping,
.management,
.ecosystem,
.final-cta {
  background: #fafafa;
}

#how-it-works,
#features {
  scroll-margin-top: 70px;
}

/* Section headings */
.section-heading {
  padding: 0 0 32px;
  text-align: center;
}

.section-heading h2 {
  padding-bottom: 10px;
  color: var(--purple);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.45;
}

.section-heading h2 > span:not(.mobile-break) {
  color: var(--black);
}

.section-heading > p {
  color: #333;
  font-size: var(--font-size-component-title);
  font-weight: 300;
  line-height: 30px;
}

/* Shared cards */
.feature,
.support-panel,
.final-cta-panel {
  border: 1px solid #e8e8ec;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 2, 40, 0.045);
}

.feature-grid {
  display: grid;
  align-items: stretch;
  gap: 24px;
}

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

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

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

.feature {
  padding: 23px;
  transition: box-shadow 180ms ease;
}

.feature:hover {
  box-shadow: 0 14px 36px rgba(17, 2, 40, 0.08);
}

.feature-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.feature-heading > img {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 7px;
  border-radius: 11px;
  background: #f4f1f7;
  object-fit: contain;
}

.feature-heading h3,
.support-item h3 {
  color: #27272b;
  font-weight: 400;
}

.feature-heading h3 {
  font-size: var(--font-size-component-title);
  line-height: 25px;
}

.feature-copy p,
.support-item p {
  color: #303035;
  font-weight: 300;
}

.feature-copy p {
  font-size: var(--font-size-reading);
  line-height: 27px;
}

.feature-details {
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid #ececef;
  color: #5f5f65;
}

.feature-details > span {
  display: block;
  margin-bottom: 3px;
  color: #3f3f44;
  font-size: var(--font-size-reading);
  font-weight: 500;
}

.feature-details > p {
  color: #5f5f65;
  font-size: var(--font-size-reading);
  line-height: 27px;
}

/* Shared content accordions */
.sales-methods-accordion,
.daily-tools-accordion {
  display: flex;
  max-width: 900px;
  flex-direction: column;
  gap: 14px;
}

.sales-method,
.daily-tool {
  border: 1px solid #e1e1e5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 2, 40, 0.045);
  min-width: 0;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.sales-method:hover,
.daily-tool:hover {
  border-color: #cfcfd4;
}

.sales-method[open],
.daily-tool[open] {
  border-color: #c9c9ce;
  box-shadow: 0 12px 32px rgba(17, 2, 40, 0.065);
}

.sales-method-summary,
.daily-tool-summary {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.sales-method-summary {
  grid-template-columns: minmax(0, 1fr) 24px;
}

.daily-tool-summary {
  grid-template-columns: 36px minmax(0, 1fr) 24px;
}

.sales-method-summary::-webkit-details-marker,
.daily-tool-summary::-webkit-details-marker {
  display: none;
}

.sales-method-summary:focus-visible,
.daily-tool-summary:focus-visible {
  outline: 3px solid rgba(157, 58, 255, 0.22);
  outline-offset: -3px;
}

.sales-method-summary-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.sales-method-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.sales-method-icon {
  display: grid;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f4f1f7;
  place-items: center;
}

.sales-method-icon img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.sales-method-meta .method-chip {
  margin-bottom: 0;
}

.method-chip {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid #d9c5ec;
  border-radius: 999px;
  background: #f2ecf7;
  color: #60239c;
  font-size: var(--font-size-micro);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 16px;
}

.method-chip {
  margin-bottom: 12px;
}

.live-shipping-chip {
  display: block;
  color: #60239c;
  font-size: var(--font-size-secondary);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-transform: uppercase;
}

.sales-method-title {
  color: #27272b;
  font-size: var(--font-size-component-title);
  font-weight: 400;
  line-height: 24px;
}

.sales-method-summary-copy {
  margin-top: 7px;
  color: #5a5a60;
  font-size: var(--font-size-reading);
  font-weight: 300;
  line-height: 24px;
  text-wrap: balance;
}

.sales-method-chevron,
.daily-tool-chevron {
  display: grid;
  width: 24px;
  height: 24px;
  background: transparent;
  color: #55555a;
  place-items: center;
  transition: transform 160ms ease;
}

.sales-method-chevron svg,
.daily-tool-chevron svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.sales-method[open] .sales-method-chevron,
.daily-tool[open] .daily-tool-chevron {
  transform: rotate(180deg);
}

.sales-method-content,
.daily-tool-content {
  padding: 18px 0 22px;
  margin: 0 22px;
  border-top: 1px solid #ececef;
}

.sales-method-copy p,
.daily-tool-content p {
  margin: 0;
  color: #303035;
  font-size: var(--font-size-reading);
  font-weight: 300;
  line-height: 27px;
  text-wrap: pretty;
}

.sales-method-copy {
  display: grid;
  gap: 16px;
}

.daily-tool-summary > img {
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 9px;
  background: #f4f1f7;
  object-fit: contain;
}

.daily-tool-summary-copy {
  min-width: 0;
}

.daily-tool-summary-copy h3 {
  color: #27272b;
  font-size: var(--font-size-component-title);
  font-weight: 400;
  line-height: 25px;
}

.daily-tool-summary-copy p {
  margin-top: 4px;
  color: #5a5a60;
  font-size: var(--font-size-reading);
  font-weight: 300;
  line-height: 24px;
  text-wrap: balance;
}

/* Signature shipping feature */
.live-shipping-feature {
  max-width: 900px;
  margin-top: 64px;
  border: 1px solid #e1e1e5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 2, 40, 0.025);
  overflow: hidden;
}

.live-shipping-heading {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 20px 22px;
}

.live-shipping-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 9px;
  background: #f4f1f7;
  place-items: center;
}

.live-shipping-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.live-shipping-heading-copy {
  min-width: 0;
}

.live-shipping-heading h3 {
  margin-top: 4px;
  color: #27272b;
  font-size: var(--font-size-component-title);
  font-weight: 400;
  line-height: 24px;
}

.live-shipping-list {
  border-top: 1px solid #ececef;
}

.live-shipping-item {
  min-width: 0;
}

.live-shipping-item + .live-shipping-item {
  border-top: 1px solid #ececef;
}

.live-shipping-summary {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 10px;
  background: transparent;
  padding: 16px 22px;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.live-shipping-summary::-webkit-details-marker {
  display: none;
}

.live-shipping-summary:focus-visible {
  outline: 3px solid rgba(157, 58, 255, 0.22);
  outline-offset: -3px;
}

.live-shipping-item-icon {
  display: grid;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f4f1f7;
  color: #7131ad;
  place-items: center;
}

.live-shipping-item-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.live-shipping-item h3 {
  margin: 0;
  color: #27272b;
  font-size: var(--font-size-reading);
  font-weight: 400;
  line-height: 24px;
}

.live-shipping-summary-copy {
  min-width: 0;
}

.live-shipping-summary-copy p {
  margin: 3px 0 0;
  color: #69696f;
  font-size: var(--font-size-reading);
  font-weight: 300;
  line-height: 24px;
  text-wrap: balance;
}

.live-shipping-description {
  padding: 18px 0;
  margin: 0 22px;
  border-top: 1px solid #ececef;
}

.live-shipping-description p {
  margin: 0;
  color: #303035;
  font-size: var(--font-size-reading);
  font-weight: 300;
  line-height: 27px;
}

.live-shipping-chevron {
  display: grid;
  width: 24px;
  height: 24px;
  background: transparent;
  color: #55555a;
  place-items: center;
  transition: transform 160ms ease;
}

.live-shipping-chevron svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.live-shipping-item[open] .live-shipping-chevron {
  transform: rotate(180deg);
}

/* Support */
.support-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.support-item {
  min-width: 0;
  padding: 27px 25px;
}

.support-item + .support-item {
  border-left: 1px solid #e7e7eb;
}

.support .section-heading h2 span {
  white-space: nowrap;
}

.support-item-heading {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}

.support-number {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 50%;
  background: #f4eff8;
  color: var(--purple);
  font-size: var(--font-size-micro);
  font-weight: 500;
  line-height: 30px;
}

.support-item h3 {
  margin-bottom: 0;
  font-size: var(--font-size-component-title);
  line-height: 24px;
}

.support-item p {
  font-size: var(--font-size-reading);
  line-height: 27px;
}

/* Final call to action */
.final-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 46px 50px;
}

.final-cta-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
}

.final-cta-copy h2 span {
  color: var(--purple);
}

.final-cta-copy p {
  margin-top: 8px;
  color: #454545;
  font-size: var(--font-size-reading);
  font-weight: 300;
  line-height: 27px;
}

.final-cta-panel .button {
  flex: 0 0 auto;
}


/* Tablet */
@media (max-width: 900px) {
  .magic-link-grid,
  .automation-grid,
  .support-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-item + .support-item {
    border-top: 1px solid #e7e7eb;
    border-left: 0;
  }

  .final-cta-panel {
    padding: 40px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-badge {
    max-width: calc(100% - 30px);
    margin-bottom: 24px;
    font-size: var(--font-size-secondary);
    text-align: center;
    line-height: 14px;
  }

  .platform-proof {
    gap: 8px;
  }

  .platform {
    padding-right: 9px;
    padding-left: 9px;
  }

  .live-shopping,
  .magic-link,
  .management,
  .ecosystem,
  .support,
  .daily-tools,
  .final-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  #how-it-works,
  #features {
    scroll-margin-top: 60px;
  }

  .section-heading {
    padding: 0 0 24px;
  }

  .section-heading h2 {
    font-size: 26px;
    line-height: 1.4;
  }

  .section-heading > p {
    font-size: var(--font-size-reading);
    line-height: 27px;
  }

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

  .feature {
    padding: 19px;
  }

  .sales-method-summary,
  .daily-tool-summary {
    gap: 10px;
    padding: 16px 18px;
  }

  .sales-method-summary {
    grid-template-columns: minmax(0, 1fr) 24px;
  }

  .daily-tool-summary {
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    column-gap: 8px;
  }

  .daily-tool-summary > img {
    width: 34px;
    height: 34px;
    padding: 5px;
    border-radius: 9px;
  }

  .sales-method-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .sales-method-icon img {
    width: 19px;
    height: 19px;
  }

  .sales-method-chevron,
  .daily-tool-chevron {
    width: 24px;
    height: 24px;
  }

  .sales-method-content,
  .daily-tool-content {
    padding: 16px 0 19px;
    margin-right: 18px;
    margin-left: 18px;
  }

  .live-shipping-feature {
    margin-top: 52px;
  }

  .live-shipping-heading {
    padding: 18px;
  }

  .live-shipping-summary {
    padding: 16px 18px;
  }

  .live-shipping-chevron {
    width: 24px;
    height: 24px;
  }

  .live-shipping-description {
    margin-right: 18px;
    margin-left: 18px;
  }

  .support-item {
    padding: 23px 20px;
  }

  .final-cta-panel {
    align-items: stretch;
    flex-direction: column;
    gap: 25px;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
  }

  .final-cta-copy h2 {
    font-size: 26px;
  }

  .final-cta-panel .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature,
  .sales-method,
  .sales-method-chevron,
  .daily-tool,
  .daily-tool-chevron {
    transition: none;
  }

}
