:root {
  --hipp-green: #0d5c3f;
  --hipp-green-dark: #083828;
  --hipp-green-soft: #e8f3ee;
  --hipp-accent: #1a8c5c;
  --text: #14241c;
  --text-muted: #3d5348;
  --surface: #ffffff;
  --surface-elevated: #f6faf7;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 18px 48px rgba(8, 56, 40, 0.12);
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(165deg, var(--hipp-green-soft) 0%, #fff 38%, var(--surface-elevated) 100%);
  min-height: 100vh;
}

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

a {
  color: var(--hipp-accent);
}

a:focus-visible {
  outline: 3px solid var(--hipp-accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--hipp-green);
  color: #fff;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 92, 63, 0.08);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--hipp-green) 0%, var(--hipp-accent) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.brand__tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--hipp-green);
  color: #fff;
}

.btn--primary:hover {
  background: var(--hipp-green-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--hipp-green);
  border-color: rgba(13, 92, 63, 0.25);
}

.btn--ghost:hover {
  border-color: var(--hipp-green);
  background: rgba(13, 92, 63, 0.06);
}

main {
  overflow-x: clip;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hipp-accent);
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--hipp-green-dark);
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 36ch;
}

.hero__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

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

.store-badge img {
  height: 48px;
  width: auto;
}

.hero__note {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

@media (min-width: 900px) {
  .hero__visual {
    min-height: 360px;
  }
}

.phone-frame {
  position: relative;
  margin: 0 auto;
  max-width: 280px;
  aspect-ratio: 9 / 19;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, #1a1a1a 0%, #333 40%, #111 100%);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.phone-frame__screen {
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  background: linear-gradient(180deg, var(--hipp-green-soft) 0%, #fff 45%);
  display: flex;
  flex-direction: column;
}

.phone-frame__status {
  padding: 0.65rem 1rem 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--hipp-green-dark);
  display: flex;
  justify-content: space-between;
  opacity: 0.85;
}

.phone-frame__app {
  flex: 1;
  padding: 0.75rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.phone-bubble {
  align-self: flex-start;
  max-width: 92%;
  padding: 0.6rem 0.85rem;
  border-radius: 14px 14px 14px 4px;
  background: #fff;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text);
  box-shadow: 0 4px 14px rgba(13, 92, 63, 0.08);
}

.phone-bubble--user {
  align-self: flex-end;
  border-radius: 14px 14px 4px 14px;
  background: var(--hipp-green);
  color: #fff;
}

.phone-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
}

.phone-chip {
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: rgba(13, 92, 63, 0.1);
  color: var(--hipp-green-dark);
  font-weight: 600;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section--tint {
  background: rgba(255, 255, 255, 0.65);
  border-block: 1px solid rgba(13, 92, 63, 0.06);
}

.section__head {
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.section__head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  color: var(--hipp-green-dark);
}

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

.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 0 8px 32px rgba(8, 56, 40, 0.07);
  border: 1px solid rgba(13, 92, 63, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--hipp-green-soft);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--hipp-green-dark);
}

.card p {
  margin: 0;
  flex: 1;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.list-section {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .list-section {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.check-list li::before {
  content: "";
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.15rem;
  border-radius: 6px;
  background: var(--hipp-green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5l3 3 6-7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 70% no-repeat;
}

.cta-band {
  max-width: var(--max);
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.cta-band__inner {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--hipp-green-dark) 0%, var(--hipp-green) 55%, var(--hipp-accent) 100%);
  color: #fff;
  padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band__inner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-band__inner p {
  margin: 0 auto 1.5rem;
  max-width: 40ch;
  opacity: 0.95;
}

.cta-band__stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-band .store-badge img {
  height: 52px;
}

.site-footer {
  background: var(--hipp-green-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.5rem 1.5rem;
  margin-top: 2rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.site-footer a {
  color: #fff;
  opacity: 0.9;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.9rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.75;
}
