:root {
  --felt: #006b68;
  --felt-dark: #004f4d;
  --cream: #f8e5bd;
  --ink: #075653;
  --mustard: #eda72b;
  --orange: #d85d31;
  font-family: ui-rounded, 'Avenir Next Rounded', 'Arial Rounded MT Bold', system-ui, sans-serif;
  color: var(--ink);
  background: #f6ead2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: radial-gradient(circle at top, #fff7e6, #f2dcb8); }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  border: 2px solid rgb(255 255 255 / .58);
  border-radius: 22px;
  padding: 12px 16px;
  background: rgb(248 229 189 / .9);
  box-shadow: 0 7px 0 rgb(116 75 40 / .24);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.wordmark .app-mark {
  display: block;
  width: 54px;
  height: 54px;
  border: 3px solid #fff1d1;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 0 rgb(95 59 31 / .24);
}

.wordmark .brand-wordmark {
  display: block;
  width: 190px;
  max-width: 29vw;
  height: 54px;
  object-fit: contain;
}

nav { display: flex; align-items: center; gap: 24px; }
nav a { font-weight: 850; text-decoration: none; }
.nav-cta, .primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 13px 19px;
  background: linear-gradient(#f2b13c, var(--mustard));
  box-shadow: 0 5px 0 #b86d17;
  color: white;
  font-weight: 950;
  text-decoration: none;
}

main { overflow: hidden; }
.hero, .steps, .screens, .privacy {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 56px;
  min-height: 760px;
  padding: 80px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-identity {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.hero-identity .eyebrow { margin: 0; }

.hero-app-icon {
  display: block;
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  border: 5px solid var(--cream);
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 8px 0 rgb(116 75 40 / .24), 0 14px 28px rgb(56 42 26 / .18);
}

h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(52px, 7vw, 92px); line-height: .94; letter-spacing: -.06em; }
h2 { margin-bottom: 18px; font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -.04em; }
h3 { margin-bottom: 8px; font-size: 23px; }
p { color: #5f5444; font-size: 19px; line-height: 1.55; }

.hero-actions { display: flex; align-items: center; gap: 18px; margin: 30px 0; }
.hero-actions span { color: #756654; font-size: 14px; font-weight: 800; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.trust-row li { border-radius: 999px; padding: 8px 13px; background: var(--felt); color: var(--cream); font-size: 13px; font-weight: 900; }

.hero-art img, .screens img, .privacy img {
  display: block;
  width: 100%;
  border: 8px solid var(--cream);
  border-radius: 30px;
  box-shadow: 0 18px 0 rgb(74 49 25 / .17), 0 32px 80px rgb(56 42 26 / .22);
}

.cream-panel {
  border: 2px solid white;
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 8px 0 rgb(118 74 39 / .2);
}

.steps { padding: 100px 0; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.step-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-list article {
  border: 2px solid white;
  border-radius: 24px;
  padding: 26px;
  background: var(--cream);
  box-shadow: 0 8px 0 rgb(118 74 39 / .2);
}
.step-list article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--felt);
  color: white;
  font-size: 22px;
  font-weight: 1000;
}
.step-list p { margin: 0; font-size: 16px; }

.screens, .privacy {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 50px;
  padding: 100px 0;
}
.privacy { grid-template-columns: .9fr 1.1fr; }
.privacy a { color: var(--orange); font-weight: 950; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 80px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  background: var(--felt-dark);
  color: var(--cream);
}
footer p { margin: 0; color: var(--cream); font-size: 15px; }
footer div { display: flex; gap: 18px; }
footer .wordmark .app-mark { width: 48px; height: 48px; border-radius: 13px; }
footer .wordmark .brand-wordmark { width: 164px; height: 48px; }

@media (max-width: 820px) {
  nav a:not(.nav-cta) { display: none; }
  .hero, .screens, .privacy { grid-template-columns: 1fr; }
  .hero { gap: 36px; padding: 64px 0; }
  .hero-copy { text-align: center; }
  .hero-identity { justify-content: center; }
  .hero-actions, .trust-row { justify-content: center; }
  .step-list { grid-template-columns: 1fr 1fr; }
  .screens, .privacy { padding: 70px 0; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .site-header { margin-top: 8px; }
  .wordmark { gap: 7px; }
  .wordmark .app-mark { width: 44px; height: 44px; border-radius: 12px; }
  .wordmark .brand-wordmark { width: 132px; max-width: 31vw; height: 44px; }
  .nav-cta { padding: 10px 13px; }
  .hero-actions { flex-direction: column; }
  .step-list { grid-template-columns: 1fr; }
  h1 { font-size: 52px; }
}
