
:root {
  color-scheme: light;
  --ink: #092d28;
  --muted: #52635f;
  --mint: #a7e5c9;
  --green: #2b806d;
  --deep-green: #155446;
  --surface: rgba(255, 255, 255, 0.82);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 16%, rgba(167, 229, 201, 0.36), transparent 32rem),
    radial-gradient(circle at 85% 82%, rgba(43, 128, 109, 0.12), transparent 34rem),
    #fbfcfa;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 2.55rem;
  height: 3rem;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 0;
  width: 2.45rem;
  height: 1.65rem;
  border-radius: 1.1rem 1.2rem 1.15rem 0.8rem;
  transform-origin: left center;
}

.brand-mark::before {
  top: 0.12rem;
  background: linear-gradient(135deg, #b5edd3, #73c5a6);
  transform: rotate(13deg);
}

.brand-mark::after {
  bottom: 0.08rem;
  background: linear-gradient(135deg, #508c76, #1d6757);
  transform: rotate(-12deg);
}

.brand-name {
  font-size: 2rem;
  font-weight: 760;
  letter-spacing: -0.06em;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(5rem, 10vw, 8rem);
  padding: clamp(3.25rem, 10vh, 7rem) 0;
}

.hero {
  width: min(47rem, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.3rem, 10vw, 7.4rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.intro {
  max-width: 37rem;
  margin: 1.6rem auto 2.3rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.3vw, 1.35rem);
  line-height: 1.55;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 4rem;
  padding: 0.8rem 1.45rem;
  border: 1px solid rgba(9, 45, 40, 0.1);
  border-radius: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--deep-green));
  box-shadow: 0 1rem 2.5rem rgba(21, 84, 70, 0.2);
  cursor: default;
  user-select: none;
}

.apple-mark {
  font-size: 1.8rem;
  line-height: 1;
}

.coming-copy {
  display: grid;
  gap: 0.05rem;
  text-align: left;
}

.coming-copy small {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.8;
}

.coming-copy strong {
  font-size: 1.08rem;
  font-weight: 700;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(22rem, 1.18fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  width: min(68rem, 100%);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(9, 45, 40, 0.08);
  border-radius: clamp(1.7rem, 4vw, 3.5rem);
  background: var(--surface);
  box-shadow: 0 1.5rem 5rem rgba(32, 91, 76, 0.08);
  overflow: hidden;
}

.showcase-copy h2 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  font-weight: 740;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.showcase-copy p:last-child {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.55;
}

.product-previews {
  position: relative;
  min-height: 25rem;
  display: grid;
  place-items: center;
}

.wallet-pass {
  width: min(100%, 25rem);
  min-height: 15.5rem;
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  color: #fff;
  background: linear-gradient(145deg, #212326, #111315);
  box-shadow: 0 1.5rem 3.8rem rgba(0, 0, 0, 0.25);
  transform: rotate(-2deg) translateX(-0.6rem);
}

.pass-header,
.pass-status,
.pass-footer,
.notification-top,
.notification-copy {
  display: flex;
  align-items: center;
}

.pass-header { gap: 0.65rem; }

.pass-check,
.notification-check {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #071713;
  background: #4fc28c;
  font-weight: 900;
}

.pass-check { width: 2rem; height: 2rem; }

.pass-brand strong,
.pass-brand small,
.notification-copy strong,
.notification-copy small {
  display: block;
}

.pass-brand strong { font-size: 1.05rem; }

.pass-brand small {
  margin-top: 0.12rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
}

.pass-demo {
  margin-left: auto;
  padding: 0.28rem 0.55rem;
  border-radius: 99rem;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.pass-rule {
  height: 1px;
  margin: 1.15rem 0;
  background: rgba(255, 255, 255, 0.1);
}

.pass-status {
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.77rem;
  font-weight: 650;
}

.pass-status span:last-child {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
}

.pass-progress,
.notification-progress {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 99rem;
}

.pass-progress { height: 0.56rem; margin: 0.85rem 0 1.2rem; }

.pass-progress span,
.notification-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: #4fc28c;
}

.pass-footer { justify-content: space-between; }

.pass-footer small {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pass-footer strong { font-size: 0.78rem; }

.pass-private,
.pass-streak {
  color: #4fc28c;
  font-size: 0.7rem;
  font-weight: 700;
}

.pass-streak { margin-top: 1rem; }

.notification {
  position: absolute;
  right: 0;
  bottom: 0.8rem;
  width: min(91%, 23rem);
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.6rem;
  color: #fff;
  background: rgba(8, 10, 10, 0.94);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(1rem);
}

.notification-top { gap: 0.65rem; }

.notification-check { width: 1.55rem; height: 1.55rem; font-size: 0.72rem; }

.notification-copy {
  min-width: 0;
  flex: 1;
  justify-content: space-between;
  gap: 0.75rem;
}

.notification-copy strong { font-size: 0.8rem; }

.notification-copy small {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
}

.notification-time {
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
}

.notification-progress { height: 0.38rem; margin-top: 0.75rem; }

.notification-progress span { width: 48%; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: inherit;
  text-underline-offset: 0.22em;
}

.footer-links a:hover { color: var(--green); }

.footer-links a:focus-visible {
  outline: 3px solid rgba(43, 128, 109, 0.35);
  outline-offset: 0.35rem;
  border-radius: 0.2rem;
}

@media (max-width: 38rem) {
  .page { padding: 1.4rem; }
  main { padding: 3.2rem 0 4rem; }
  .showcase {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }
  .showcase-copy { text-align: center; }
  .showcase-copy h2 { max-width: none; }
  .product-previews { min-height: 22rem; }
  .wallet-pass { transform: rotate(-1.5deg); }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
