:root {
  --bg: #02070b;
  --panel: #080d13;
  --panel-2: #0b111b;
  --line: rgba(224, 183, 128, 0.2);
  --muted-line: rgba(255, 255, 255, 0.08);
  --gold: #d8b47e;
  --gold-2: #f0c991;
  --cream: #fff7ed;
  --text: #fffaf2;
  --muted: #b6aa9e;
  --soft: #766b61;
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 64% 6%, rgba(222, 176, 112, 0.1), transparent 26rem),
    linear-gradient(180deg, #02070b 0%, #03080d 52%, #05090e 100%);
  color: var(--text);
  font-family: var(--sans);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  width: min(calc(100% - 72px), 1400px);
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(2, 7, 11, 0.86);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
}

.brand-mark::before {
  inset: 8px 12px 8px 8px;
  border: 3px solid var(--gold);
  border-right-color: transparent;
  border-radius: 50%;
}

.brand-mark::after {
  right: 0;
  bottom: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.brand-mark span::before {
  left: 21px;
  top: 16px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.brand-mark span::after {
  right: 7px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--gold-2);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 4vw, 66px);
  color: var(--cream);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  opacity: 0.92;
}

.top-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  border: 1px solid rgba(216, 180, 126, 0.48);
  border-radius: var(--radius);
  padding: 0 28px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.top-cta,
.button.primary {
  background: linear-gradient(180deg, #e4bd84, #d4a66d);
  color: #14100b;
  box-shadow: 0 16px 42px rgba(216, 180, 126, 0.18);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--cream);
}

.button svg {
  width: 20px;
  height: 20px;
}

.section-shell {
  width: min(calc(100% - 72px), 1400px);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 24px;
  padding: 8px 0 0;
  border-bottom: 1px solid var(--muted-line);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 4;
  height: 1px;
  background: var(--muted-line);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 670px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 35px;
  padding: 9px 16px;
  border: 1px solid rgba(216, 180, 126, 0.36);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "✦";
  margin-right: 8px;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(55px, 4.7vw, 74px);
  line-height: 0.98;
}

h1 span,
.experience h2 span {
  color: var(--gold);
}

.lead {
  max-width: 500px;
  margin: 38px 0 40px;
  color: #d8d1c8;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions,
.download-row,
.mini-download {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 45px;
  color: #d6cec3;
  font-size: 15px;
}

.social-proof p {
  margin: 0;
}

.social-proof strong {
  color: var(--gold);
  letter-spacing: 5px;
}

.avatars {
  display: flex;
  padding-left: 10px;
}

.avatars span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: -10px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 28%, #f5d4b0 0 18%, transparent 19%),
    radial-gradient(circle at 50% 66%, #70533e 0 30%, transparent 31%),
    linear-gradient(135deg, #2d463f, #b98d61);
  color: transparent;
}

.hero-stage {
  position: relative;
  height: 520px;
  overflow: visible;
}

.hero-mobiles {
  position: absolute;
  left: 50%;
  top: -10px;
  width: min(820px, 51vw);
  max-width: none;
  height: auto;
  transform: translateX(-55%);
  filter: drop-shadow(0 36px 58px rgba(0, 0, 0, 0.42));
  user-select: none;
  pointer-events: none;
}

.phone {
  overflow: hidden;
  border: 2px solid rgba(236, 209, 168, 0.32);
  border-radius: 42px;
  background: #05080c;
  box-shadow:
    inset 0 0 0 8px #11151b,
    0 32px 65px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.09);
}

.hero-phone {
  position: absolute;
  top: 4px;
  width: 356px;
  height: 670px;
  padding: 32px 22px 22px;
}

.hero-phone.front {
  left: 36px;
  z-index: 4;
  transform: rotate(-2deg);
}

.hero-phone.back {
  right: 0;
  top: 88px;
  z-index: 3;
  width: 300px;
  height: 570px;
  padding: 31px 18px 18px;
  transform: rotate(9deg);
}

.status,
.app-head,
.album-head,
.moments-title,
.post-head,
.post-foot,
.tabbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status {
  color: #fff8ef;
  font-size: 12px;
  font-weight: 800;
}

.app-head {
  margin: 20px 0 23px;
  color: var(--cream);
}

.app-head strong {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
}

.app-head small,
.moments-title small,
.ai-card small,
.post-head small {
  display: block;
  color: #b9a282;
  font-size: 11px;
}

.mini-mark {
  width: 32px;
  height: 32px;
  border: 2px solid var(--gold);
  border-right-color: transparent;
  border-radius: 50%;
}

.moments-title {
  margin-bottom: 12px;
  color: #e3d8c8;
  font-size: 14px;
}

.moment-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.memory,
.tile,
.main-photo,
.wide-photo,
.video-photo,
.testimonial-photo {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 226, 172, 0.88) 0 1px, transparent 2px 26px),
    linear-gradient(145deg, rgba(38, 77, 53, 0.48), transparent 38%),
    linear-gradient(160deg, #2b170d, #050608 68%);
}

.memory::after,
.tile::after,
.main-photo::after,
.wide-photo::after,
.video-photo::after,
.testimonial-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 68%, rgba(251, 210, 142, 0.85), transparent 2px),
    radial-gradient(circle at 53% 55%, rgba(255, 255, 255, 0.9), transparent 1px),
    radial-gradient(circle at 47% 55%, rgba(255, 255, 255, 0.9), transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(255, 231, 188, 0.95), transparent 12px),
    linear-gradient(to top, rgba(0, 0, 0, 0.58), transparent 55%);
  opacity: 0.75;
}

.memory {
  height: 116px;
  border-radius: 12px;
  padding: 10px;
  color: white;
}

.memory b,
.memory small,
.memory em {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 11px;
  font-style: normal;
}

.memory b {
  font-size: 12px;
}

.memory em {
  position: absolute;
  bottom: 9px;
  left: 10px;
  right: 10px;
  padding: 5px 4px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
}

.p2 {
  background:
    radial-gradient(circle at 20% 18%, rgba(250, 214, 152, 0.8) 0 1px, transparent 2px 24px),
    linear-gradient(145deg, #5b2f16, #08090c 70%);
}

.p3 {
  background:
    radial-gradient(circle at 34% 18%, rgba(255, 219, 155, 0.8) 0 1px, transparent 2px 28px),
    linear-gradient(145deg, #50391e, #08090c 70%);
}

.p4,
.p7 {
  background:
    radial-gradient(circle at 64% 24%, rgba(255, 226, 166, 0.82) 0 1px, transparent 2px 22px),
    linear-gradient(145deg, #44210e, #050608 74%);
}

.p5,
.rings {
  background:
    radial-gradient(circle at 48% 52%, transparent 0 13px, rgba(216, 180, 126, 0.98) 14px 17px, transparent 18px),
    radial-gradient(circle at 58% 48%, transparent 0 13px, rgba(216, 180, 126, 0.98) 14px 17px, transparent 18px),
    linear-gradient(145deg, #3a2a1b, #07090c 68%);
}

.bouquet,
.p6 {
  background:
    radial-gradient(circle at 46% 46%, #f0dfcf 0 10px, transparent 11px),
    radial-gradient(circle at 56% 44%, #d8b47e 0 9px, transparent 10px),
    radial-gradient(circle at 50% 56%, #8f8a58 0 18px, transparent 19px),
    linear-gradient(145deg, #382512, #07090c);
}

.ai-card {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 11px;
  min-height: 67px;
  margin: 12px 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #111923;
}

.ai-card > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.ai-card b {
  display: block;
  font-size: 12px;
}

.ai-card button {
  border: 0;
  border-radius: 8px;
  padding: 9px 11px;
  background: var(--gold);
  color: #0f0d0b;
  font-size: 10px;
  font-weight: 800;
}

.post {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: #101822;
}

.post-head {
  padding: 11px 12px;
  font-size: 12px;
}

.face {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(145deg, #b47442, #302116);
}

.main-photo {
  height: 154px;
  background:
    radial-gradient(circle at 10% 20%, rgba(252, 219, 154, 0.85) 0 1px, transparent 2px 22px),
    radial-gradient(circle at 50% 54%, rgba(248, 224, 184, 0.92) 0 16px, transparent 17px),
    linear-gradient(145deg, #452412, #08090d 78%);
}

.post-foot {
  padding: 9px 12px 12px;
  color: #e9dccb;
  font-size: 11px;
}

.tabbar {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 11px 12px 8px;
  border-radius: 0 0 29px 29px;
  background: rgba(14, 20, 30, 0.92);
  color: var(--gold);
}

.tabbar span {
  display: grid;
  place-items: center;
  gap: 1px;
  font-size: 19px;
}

.tabbar small {
  font-size: 9px;
}

.tabbar b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #090909;
  font-size: 29px;
}

.album-head {
  margin: 0 0 22px;
  justify-content: flex-start;
  gap: 15px;
  color: var(--gold);
}

.album-head svg {
  width: 18px;
}

.hero-phone.back h2 {
  margin: 0 0 8px;
  font-size: 34px;
}

.hero-phone.back p {
  margin: 0 0 12px;
  color: #a99d93;
  font-size: 12px;
}

.chips {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.chips span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #141d29;
  color: white;
  font-size: 11px;
  font-weight: 700;
}

.chips span:first-child {
  background: var(--gold);
  color: #111;
}

.chips svg {
  margin-left: auto;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.tile {
  aspect-ratio: 1 / 1.24;
  border-radius: 7px;
}

.features {
  position: relative;
  width: 100%;
  padding: 58px max(36px, calc((100vw - 1400px) / 2)) 45px;
  border-bottom: 1px solid var(--muted-line);
}

.features h2 {
  position: absolute;
  left: calc(50% - clamp(92px, 11vw, 220px));
  top: 56px;
  transform: translateX(-50%);
  width: 360px;
  margin: 0;
  color: var(--cream);
  text-align: center;
  font-size: 29px;
  line-height: 0.94;
}

.features h2::before,
.features h2::after {
  content: "✦";
  position: absolute;
  color: var(--gold);
  font-family: var(--sans);
}

.features h2::before {
  left: -18px;
  top: -20px;
}

.features h2::after {
  right: -24px;
  bottom: 5px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: end;
  padding-top: 62px;
}

.feature-grid article {
  min-height: 136px;
  display: grid;
  justify-items: center;
  align-content: end;
  text-align: center;
}

.feature-grid svg {
  width: 44px;
  height: 44px;
  color: var(--gold);
}

.feature-grid h3 {
  margin: 21px 0 8px;
  color: #fff9f1;
  font-size: 15px;
}

.feature-grid p {
  max-width: 185px;
  margin: 0 auto;
  color: #a99f94;
  font-size: 13px;
  line-height: 1.45;
}

.experience {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 28px 0 21px;
  border-bottom: 1px solid var(--muted-line);
}

.phone-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.app-screen-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.app-screen-shot img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
}

.search,
.guest-list p,
.comment-bar {
  height: 24px;
  border-radius: 7px;
  background: #101722;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.guest-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0 24px;
}

.guest-row span {
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #c78e59, #1d2630);
}

.guest-list {
  display: grid;
  gap: 13px;
}

.wide-photo,
.video-photo,
.testimonial-photo {
  height: 145px;
  margin-bottom: 18px;
  border-radius: 16px;
}

.event-code strong {
  color: var(--gold);
  font-size: 18px;
}

.event-code p {
  height: 47px;
  margin: 14px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: #101722;
}

.video-photo {
  height: 205px;
}

.video-screen p {
  color: #d5c6b5;
  font-size: 13px;
}

.comment-bar {
  margin-top: 48px;
}

.mini-nav {
  height: 48px;
  margin-top: 20px;
  border-radius: 0 0 18px 18px;
  background: #0e1621;
}

.experience-copy {
  padding: 0 0 0 6px;
}

.experience-copy .eyebrow {
  margin-bottom: 18px;
}

.experience h2 {
  max-width: 510px;
  margin: 0 0 28px;
  font-size: clamp(38px, 4vw, 55px);
  line-height: 0.98;
}

.experience ul {
  display: grid;
  gap: 14px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
  color: #e7ddd1;
}

.experience li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.experience li svg {
  flex: 0 0 auto;
  width: 19px;
  color: var(--gold);
}

.store-badge {
  display: block;
  width: auto;
  height: 45px;
  object-fit: contain;
}

.experience-copy .download-row {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  align-items: center;
  justify-content: start;
  column-gap: 16px;
  row-gap: 16px;
}

.experience-copy .download-row .qr-cluster {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.qr-cluster {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  flex: 0 0 auto;
}

.qr-code {
  width: 72px;
  height: 72px;
  display: block;
  padding: 4px;
  border-radius: 4px;
  background: #fff;
  object-fit: contain;
}

.qr-note {
  position: relative;
  display: grid;
  align-self: stretch;
  align-content: start;
  min-width: 96px;
  color: var(--gold);
}

.qr-note small {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
}

.qr-note::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 32px;
  width: 74px;
  height: 46px;
  background: url("data:image/svg+xml,%3Csvg width='74' height='46' viewBox='0 0 74 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M68 4C63 24 47 40 26 33C15 30 24 16 34 22C43 28 29 42 8 36' stroke='%23d8b47e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17 29L8 36L20 40' stroke='%23d8b47e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.9;
}

.qr-note::before {
  content: none;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.55fr;
  gap: 0;
  margin-top: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 760px) {
  .experience-copy .download-row {
    width: 100%;
    grid-template-columns: max-content max-content;
    grid-template-rows: auto auto;
    justify-content: center;
    align-items: center;
    column-gap: 18px;
    row-gap: 10px;
  }

  .experience-copy .download-row .google {
    grid-column: 1;
    grid-row: 1;
  }

  .experience-copy .download-row .apple {
    grid-column: 1;
    grid-row: 2;
  }

  .experience-copy .download-row .qr-cluster {
    grid-column: 2;
    grid-row: 1 / 3;
    justify-self: start;
    align-self: center;
  }

  .experience-copy .download-row .store-badge {
    height: 44px;
  }

  .experience-copy .download-row .qr-code {
    width: 90px;
    height: 90px;
  }

  .experience-copy .download-row .qr-note {
    min-width: 86px;
  }

  .experience-copy .download-row .qr-note small {
    font-size: 13px;
  }

  .experience-copy .download-row .qr-note::after {
    left: -7px;
    top: 40px;
    width: 82px;
    height: 52px;
  }
}

.stats article {
  min-height: 103px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 15px;
  padding: 22px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stats article:last-child {
  border-right: 0;
}

.stats svg {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.stats strong {
  color: var(--gold);
  font-size: 32px;
  font-weight: 700;
  line-height: 0.95;
}

.stats span {
  color: #b6aa9e;
  font-size: 13px;
}

.stats article:last-child strong {
  color: var(--cream);
  font-size: 16px;
}

.testimonial {
  display: grid;
  grid-template-columns: 0.58fr 1fr auto;
  gap: 0;
  overflow: hidden;
  min-height: 180px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.testimonial-photo {
  height: 180px;
  margin: 0;
  border-radius: 0;
}

blockquote {
  margin: 0;
  padding: 35px 50px;
  color: #fff5e8;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.16;
}

cite {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

cite span {
  display: block;
  color: #8d8175;
  font-weight: 500;
}

.testimonial-controls {
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 0 24px 22px 0;
}

.testimonial-controls button {
  width: 39px;
  height: 39px;
  border: 0;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(470px, 1fr) auto minmax(430px, 0.78fr);
  align-items: center;
  gap: 0;
  min-height: 112px;
  margin-bottom: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
}

.final-cta > div:first-child {
  min-width: 0;
  padding: 22px 32px;
}

.final-cta > .button {
  min-width: 300px;
  margin: 0 28px;
}

.final-cta .eyebrow {
  margin: 0 0 8px;
  border: 0;
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.2vw, 35px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
}

.final-cta > div:first-child > span {
  display: block;
  color: #b6aa9e;
  font-size: 15px;
  line-height: 1.35;
}

.mini-download {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-self: stretch;
  align-items: center;
  justify-content: start;
  column-gap: 14px;
  row-gap: 8px;
  padding: 16px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  color: #b6aa9e;
}

.mini-download .qr-cluster {
  display: contents;
}

.mini-download .qr-code {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 70px;
  height: 70px;
  padding: 4px;
}

.store-badges {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-download .qr-note {
  grid-column: 2;
  grid-row: 1;
  align-content: center;
  min-width: 0;
}

.mini-download .qr-note small {
  color: #b6aa9e;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.mini-download .store-badge {
  height: 36px;
}

.mini-download .qr-note::before,
.mini-download .qr-note::after {
  display: none;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.55fr 0.55fr 1fr;
  gap: 42px;
  padding: 8px 0 45px;
  color: #9d9287;
}

.footer .logo {
  margin-bottom: 14px;
  font-size: 25px;
}

.footer .brand-mark {
  width: 42px;
  height: 42px;
}

.footer-about p {
  max-width: 260px;
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.55;
}

.social {
  display: flex;
  gap: 15px;
}

.social svg {
  width: 18px;
  color: var(--gold);
}

.footer nav {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer h3 {
  margin: 0 0 4px;
  color: #cfc5ba;
  font-size: 13px;
}

.footer a {
  font-size: 12px;
}

.copy {
  align-self: center;
  justify-self: end;
  margin: 0;
  font-size: 12px;
}

@media (max-width: 1180px) {
  .topbar,
  .section-shell {
    width: min(calc(100% - 48px), 1400px);
  }

  .logo {
    gap: 11px;
    font-size: 23px;
    letter-spacing: 6px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .nav {
    gap: 24px;
    font-size: 13px;
  }

  .top-cta,
  .button {
    min-height: 52px;
    padding-inline: 22px;
  }

  .hero {
    min-height: 468px;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 10px;
  }

  .hero-copy {
    max-width: 470px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 26px;
  }

  h1 {
    font-size: clamp(46px, 5vw, 58px);
  }

  .lead {
    margin: 28px 0 32px;
    font-size: 16px;
    line-height: 1.65;
  }

  .social-proof {
    margin-top: 34px;
    gap: 12px;
    font-size: 13px;
  }

  .hero-stage {
    height: 468px;
  }

  .hero-mobiles {
    top: -24px;
    width: min(760px, 68vw);
    transform: translateX(-48%);
  }

  .feature-grid {
    gap: 18px;
  }

  .feature-grid p {
    max-width: 155px;
  }

  .experience {
    grid-template-columns: 1.35fr 0.95fr;
    gap: 24px;
  }

  .stats article {
    padding-inline: 22px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .final-cta > div:first-child {
    padding: 0;
  }

  .final-cta > .button {
    width: min(100%, 320px);
    margin: 0;
  }

  .final-cta .eyebrow {
    white-space: normal;
  }

  .mini-download {
    align-self: auto;
    width: 100%;
    padding: 0;
    border-left: 0;
  }

  .footer {
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-stage {
    height: 650px;
    max-width: 720px;
  }

  .hero-mobiles {
    top: -16px;
    width: min(760px, 100vw);
    transform: translateX(-50%);
  }

  .experience,
  .final-cta,
  .testimonial {
    grid-template-columns: 1fr;
  }

  .final-cta {
    gap: 18px;
    padding: 22px;
  }

  .final-cta > div:first-child {
    padding: 0;
  }

  .final-cta > .button {
    width: min(100%, 320px);
    margin: 0;
  }

  .final-cta .eyebrow {
    white-space: normal;
  }

  .testimonial-controls,
  .mini-download {
    justify-content: start;
    padding: 0;
  }

  .mini-download {
    align-self: auto;
    border-left: 0;
  }

  .feature-grid,
  .stats,
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .features h2 {
    position: static;
    transform: none;
    margin: 0 auto 35px;
  }

  .feature-grid {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .topbar,
  .section-shell {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .topbar {
    height: 76px;
    justify-content: center;
  }

  .logo {
    gap: 10px;
    font-size: 20px;
    letter-spacing: 5px;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .top-cta {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 14px;
    padding-right: 14px;
    min-height: 0;
    padding-bottom: 35px;
    overflow: hidden;
  }

  .hero-copy {
    width: 100%;
    max-width: 330px;
    align-self: center;
    margin: 0 auto;
    text-align: center;
  }

  .eyebrow {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(31px, 8.4vw, 34px);
  }

  .lead {
    width: 100%;
    max-width: 100%;
  }

  .button {
    max-width: 360px;
  }

  .hero-stage {
    width: min(330px, calc(100vw - 56px));
    max-width: min(330px, calc(100vw - 56px));
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
  }

  .hero-mobiles {
    top: 0;
    width: min(520px, 130vw);
    transform: translateX(-50%);
  }

  .lead {
    margin: 24px 0 28px;
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .social-proof {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .social-proof {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 28px;
    text-align: center;
  }

  .hero-stage {
    height: 420px;
    margin-top: 20px;
  }

  .hero-phone.front {
    left: 50%;
    width: 100%;
    height: 550px;
    transform: translateX(-50%) rotate(-1deg);
  }

  .hero-phone.back {
    display: none;
  }

  .features {
    padding-inline: 14px;
  }

  .feature-grid,
  .phone-showcase,
  .stats,
  .footer {
    grid-template-columns: 1fr;
  }

  .features h2 {
    width: auto;
  }

  .stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  blockquote {
    padding: 26px 24px;
    font-size: 24px;
  }

  .final-cta {
    padding: 22px;
  }

  .final-cta .eyebrow {
    font-size: 29px;
    line-height: 0.98;
  }

  .copy {
    justify-self: start;
  }

}
