.site-container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.site-section--compact {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(108, 248, 187, 0.12);
  color: #00714d;
  border-radius: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  color: #003527;
  letter-spacing: -0.02em;
}

.section-copy {
  font-family: var(--font-body);
  color: #404944;
  line-height: 1.6;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.25rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease,
    transform 180ms ease, opacity 180ms ease;
}

.btn-primary {
  background: #003527;
  color: #fff;
}

.btn-primary:hover {
  background: #064e3b;
}

.btn-secondary {
  background: #006c49;
  color: #fff;
}

.btn-secondary:hover {
  opacity: 0.92;
}

.btn-ghost {
  border: 1px solid #003527;
  color: #003527;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(0, 53, 39, 0.05);
}

.card {
  background: #fff;
  border: 1px solid rgba(191, 201, 195, 0.55);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.card--accent-primary {
  border-top: 4px solid #064e3b;
}

.card--accent-secondary {
  border-top: 4px solid #006c49;
}

.card--accent-tertiary {
  border-top: 4px solid #4f1f19;
}

.icon-badge {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.chip--secondary {
  background: rgba(0, 108, 73, 0.1);
  color: #006c49;
}

.chip--primary {
  background: rgba(6, 78, 59, 0.1);
  color: #064e3b;
}

.chip--tertiary {
  background: rgba(79, 31, 25, 0.1);
  color: #4f1f19;
}

.field {
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  background: transparent;
}

.field:focus-within {
  border-color: #003527;
}

.nav-shell {
  background: rgba(247, 249, 251, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(191, 201, 195, 0.2);
}

.form-status {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status--success {
  background: rgba(0, 108, 73, 0.08);
  border-color: rgba(0, 108, 73, 0.24);
  color: #003527;
}

.form-status--error {
  background: rgba(185, 28, 28, 0.08);
  border-color: rgba(185, 28, 28, 0.24);
  color: #7f1d1d;
}

.faq-accordion {
  display: grid;
  gap: 1rem;
}

.faq-accordion__item {
  overflow: hidden;
}

.faq-accordion__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(191, 201, 195, 0.45);
  transition: background-color 180ms ease;
}

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

.faq-accordion__summary:hover {
  background: rgba(0, 53, 39, 0.02);
}

.faq-accordion__summary > span:first-child {
  min-width: 0;
}

.faq-accordion__indicator {
  position: relative;
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin-left: auto;
  color: #006c49;
  transform-origin: center;
  transition: transform 220ms ease, color 220ms ease;
}

.faq-accordion__indicator span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.faq-accordion__indicator span:last-child {
  width: 2px;
  height: 1rem;
}

.faq-accordion__item[open] .faq-accordion__indicator {
  transform: rotate(180deg);
}

.faq-accordion__item[open] .faq-accordion__indicator span:last-child {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-accordion__content {
  padding: 0.85rem 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(191, 201, 195, 0.25);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  line-height: 1;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.store-badge:hover {
  transform: translateY(-1px);
}

.store-badge__icon {
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 1.7rem;
}

.store-badge__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.store-badge__kicker {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-badge__name {
  font-size: 1.05rem;
  font-weight: 600;
}

.store-badge--apple {
  background: #111827;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.18);
}

.store-badge--apple .store-badge__icon {
  width: 1.8rem;
  height: 1.8rem;
  flex-basis: 1.8rem;
}

.store-badge--google {
  background: #ffffff;
  color: #1f2937;
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
}

.succession-section {
  position: relative;
  overflow: hidden;
  background: #003527;
  color: #ffffff;
  padding-top: 64px;
  padding-bottom: 64px;
}

.succession-section__decor {
  position: absolute;
  right: 0;
  top: 0;
  width: min(36%, 420px);
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}

.succession-section__intro {
  text-align: center;
  margin-bottom: 40px;
}

.succession-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 3.25rem);
  line-height: 1.08;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.succession-section__copy {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

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

@media (min-width: 768px) {
  .succession-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

.succession-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.succession-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.succession-card__icon {
  color: #64f8c8;
  margin-bottom: 1rem;
  display: block;
  font-size: 2.5rem;
  transition: transform 180ms ease;
}

.succession-card:hover .succession-card__icon {
  transform: scale(1.06);
}

.succession-card__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.succession-card__copy {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.succession-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #64f8c8;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 180ms ease, opacity 180ms ease;
}

.succession-card__link:hover {
  gap: 0.7rem;
}
