:root {
  --paper: #ede6d9;
  --ink: #14110e;
  --muted: #6f685d;
  --line: rgba(20, 17, 14, 0.1);
  --accent: #b5441f;
  --forest: #214336;
  --gold: #c4a35a;
  --white: #fffaf3;
  --shadow: 0 18px 40px rgba(20, 17, 14, 0.12);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  background: #1c1916;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.phone {
  position: relative;
  min-height: 100dvh;
  max-width: 430px;
  margin: 0 auto;
  padding: calc(18px + var(--safe-t)) 20px calc(128px + var(--safe-b));
  background:
    radial-gradient(120% 70% at 100% -10%, rgba(196, 163, 90, 0.28), transparent 46%),
    radial-gradient(90% 50% at 0% 20%, rgba(181, 68, 31, 0.12), transparent 50%),
    var(--paper);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.top,
main {
  position: relative;
  z-index: 1;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--accent), var(--gold), var(--forest), var(--accent));
  box-shadow: inset 0 0 0 3px var(--paper);
}

.live {
  font-size: 12px;
  font-weight: 600;
  color: var(--forest);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(33, 67, 54, 0.1);
}

.hero h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(42px, 12vw, 56px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 600;
  margin: 12px 0 18px;
}

.hero em {
  font-style: normal;
  color: var(--accent);
}

.eyebrow,
.lead,
.who-label,
.stores {
  color: var(--muted);
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
}

.lead {
  font-size: 17px;
  line-height: 1.45;
  max-width: 20em;
}

.wallet {
  position: relative;
  height: 168px;
  margin: 36px 0 28px;
}

.note {
  position: absolute;
  left: 0;
  right: 36px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.note span {
  font-size: 14px;
  color: var(--muted);
}

.note strong {
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.note-a {
  top: 0;
  transform: rotate(-4deg);
  z-index: 3;
}

.note-b {
  top: 52px;
  left: 18px;
  right: 10px;
  transform: rotate(3deg);
  z-index: 2;
  background: #214336;
  color: #f4efe4;
}

.note-b span {
  color: rgba(244, 239, 228, 0.7);
}

.note-c {
  top: 104px;
  left: 8px;
  right: 28px;
  transform: rotate(-1.5deg);
  z-index: 1;
  background: #2a231c;
  color: #f4efe4;
}

.note-c span {
  color: rgba(244, 239, 228, 0.68);
}

.who {
  padding: 22px 0 8px;
  border-top: 1px solid var(--line);
}

.who-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.who ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.who li {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20, 17, 14, 0.05);
}

.dock {
  position: fixed;
  left: 50%;
  bottom: 0;
  width: min(430px, 100%);
  transform: translateX(-50%);
  padding: 14px 20px calc(16px + var(--safe-b));
  background: linear-gradient(180deg, rgba(237, 230, 217, 0), var(--paper) 28%);
  z-index: 5;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta:active {
  transform: scale(0.98);
}

.stores {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.dl-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 17, 14, 0.55);
}

.dl-modal[hidden] {
  display: none;
}

.dl-card {
  width: min(320px, 100%);
  padding: 28px 22px 24px;
  border-radius: 24px;
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.ouro {
  width: 86px;
  height: 86px;
  margin-bottom: 16px;
  animation: spin 1.15s linear infinite;
}

.dl-card p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 40px;
  }

  .note strong {
    font-size: 14px;
  }
}

@media (min-width: 480px) {
  body {
    display: grid;
    place-items: center;
    padding: 24px 0;
  }

  .phone {
    min-height: min(860px, 100dvh);
    border-radius: 36px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  }

  .dock {
    position: absolute;
    left: 0;
    right: 0;
    width: auto;
    transform: none;
    border-radius: 0 0 36px 36px;
  }
}
