* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--color-surface-soft);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

body {
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(145deg, rgb(217 242 217 / 78%), rgb(255 242 230 / 86%)),
    var(--color-surface-soft);
}

.content-wrap {
  width: calc(100% - 32px);
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand-link,
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-link img {
  width: 38px;
  height: 24px;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
}

.nav-link {
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: 56px;
  min-height: min(720px, calc(100vh - 88px));
  padding: 56px 0 80px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow {
  margin: 0;
  color: var(--color-accent-orange-text);
  font-size: 14px;
  font-weight: 800;
}

.hero h1,
.page-title {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 8vw, 84px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-title {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.hero-title span {
  display: block;
}

.lead {
  margin: 0;
  max-width: 640px;
  color: var(--color-text-secondary);
  font-size: 18px;
  line-height: 1.9;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.store-panel,
.support-panel,
.feature-list {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: rgb(255 255 255 / 82%);
}

.store-panel {
  display: grid;
  gap: 14px;
  max-width: 520px;
  padding: 18px;
}

.store-panel-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.store-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.store-status {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  font-size: 13px;
  font-weight: 700;
}

.store-badge-link,
.store-badge-placeholder {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.store-badge-placeholder {
  cursor: default;
}

.store-badge-image {
  display: block;
  width: auto;
  height: 40px;
}

.brand-preview {
  display: grid;
  place-items: center;
  min-height: 440px;
  border-radius: 28px;
  background: linear-gradient(140deg, #63b79b 8%, #bcc268 48%, #ff8637 92%);
  box-shadow: var(--shadow-soft);
}

.brand-preview img {
  width: min(48%, 220px);
  height: auto;
}

.feature-section {
  padding: 0 0 88px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.18;
  letter-spacing: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: 0;
}

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

.feature-item {
  min-height: 180px;
  padding: 28px;
  background: var(--color-surface);
}

.feature-item h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.feature-item p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.support-main {
  padding: 56px 0 96px;
}

.support-panel {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: 760px;
  padding: 32px;
}

.support-panel > * {
  min-width: 0;
}

.support-panel p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.9;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.contact-box {
  border-left: 4px solid var(--color-accent-orange);
  padding: 14px 0 14px 18px;
  background: var(--color-surface-peach);
}

.contact-box strong {
  display: block;
  margin-bottom: 6px;
}

.site-footer {
  border-top: 1px solid rgb(32 32 32 / 10%);
  padding: 28px 0 36px;
  color: var(--color-text-secondary);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-break {
  display: none;
}

@media (max-width: 760px) {
  .content-wrap {
    width: calc(100% - 28px);
  }

  .site-header {
    padding: 18px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding: 36px 0 64px;
  }

  .hero h1,
  .page-title {
    font-size: 38px;
  }

  .lead {
    font-size: 16px;
  }

  .brand-preview {
    min-height: 300px;
    border-radius: 20px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .support-main {
    padding: 36px 0 72px;
  }

  .support-panel {
    padding: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-break {
    display: block;
  }
}
