: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;
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 180, 126, 0.34);
  border-radius: 8px;
  color: var(--cream);
  list-style: none;
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary svg {
  width: 22px;
  height: 22px;
}

.mobile-menu div {
  position: absolute;
  top: calc(100% - 8px);
  right: 0;
  width: min(320px, calc(100vw - 28px));
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(8, 13, 19, 0.98);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
}

.mobile-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 800;
}

.mobile-menu a:last-child {
  margin-top: 6px;
  justify-content: center;
  background: var(--gold);
  color: #14100b;
}

.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;
}

.store-link {
  display: inline-flex;
  line-height: 0;
}

.store-pending {
  display: inline-flex;
  align-items: center;
  min-height: 45px;
  color: #b6aa9e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.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 .store-pending {
    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;
}

.faq {
  padding-top: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--muted-line);
}

.faq > .eyebrow {
  margin-bottom: 18px;
}

.faq h2 {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--cream);
  font-size: clamp(38px, 4vw, 54px);
  line-height: 0.98;
}

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

.faq-grid article {
  min-height: 184px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.faq-grid h3 {
  margin: 0 0 12px;
  color: #fff9f1;
  font-size: 16px;
  line-height: 1.24;
}

.faq-grid p {
  margin: 0;
  color: #b6aa9e;
  font-size: 14px;
  line-height: 1.55;
}

.seo-links,
.topic-section {
  padding-top: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--muted-line);
}

.seo-links h2,
.topic-section h2 {
  max-width: 800px;
  margin: 0 0 28px;
  color: var(--cream);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.98;
}

.seo-link-grid,
.topic-card-grid,
.topic-faq-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.seo-link-grid a,
.topic-card,
.topic-faq-grid article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.topic-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-link-grid svg,
.topic-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--gold);
}

.seo-link-grid strong,
.topic-card strong,
.topic-step strong {
  display: block;
  margin-bottom: 9px;
  color: #fff9f1;
  font-size: 16px;
  line-height: 1.2;
}

.seo-link-grid span,
.topic-card p,
.topic-step p,
.topic-faq-grid p {
  display: block;
  margin: 0;
  color: #b6aa9e;
  font-size: 14px;
  line-height: 1.55;
}

.topic-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 36px;
  padding: 34px 0 26px;
  border-bottom: 1px solid var(--muted-line);
}

.topic-hero h1 {
  max-width: 720px;
}

.topic-hero .lead {
  max-width: 620px;
}

.topic-media {
  display: grid;
  place-items: center;
  min-width: 0;
}

.topic-media img {
  width: min(720px, 50vw);
  max-width: none;
  max-height: 620px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 36px 58px rgba(0, 0, 0, 0.42));
}

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

.topic-step {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.topic-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #14100b;
  font-weight: 900;
}

.topic-faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.topic-faq-grid article {
  min-height: 160px;
}

.topic-faq-grid h3 {
  margin: 0 0 10px;
  color: #fff9f1;
  font-size: 16px;
  line-height: 1.24;
}

.screen-page {
  padding: 34px 0 42px;
  border-bottom: 1px solid var(--muted-line);
}

.screen-heading {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.screen-heading .eyebrow {
  margin-bottom: 16px;
}

.screen-heading h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
}

.screen-heading p {
  max-width: 620px;
  margin: 16px auto 0;
  color: #d8d1c8;
  font-size: 16px;
  line-height: 1.6;
}

.feature-screen-grid,
.screen-steps,
.screen-faq {
  display: grid;
  gap: 16px;
}

.feature-screen-grid {
  max-width: 1580px;
  margin: 0 auto;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.screen-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(138px, 0.58fr);
  align-items: center;
  gap: 30px;
  min-height: 238px;
  overflow: hidden;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 22% 18%, rgba(216, 180, 126, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.screen-feature {
  grid-column: span 2;
}

.screen-feature:nth-child(4) {
  grid-column: 2 / span 2;
}

.screen-feature:nth-child(5) {
  grid-column: 4 / span 2;
}

.screen-feature figure {
  height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 11px;
}

.screen-phone {
  position: relative;
  align-self: end;
  width: min(100%, 176px);
  aspect-ratio: 853 / 1844;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.025) 22%, rgba(0, 0, 0, 0.72)),
    #060a0f;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.72),
    inset 10px 0 18px rgba(255, 255, 255, 0.045),
    0 24px 46px rgba(0, 0, 0, 0.5);
  transform-origin: bottom center;
}

.screen-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 52px;
  height: 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  transform: translateX(-50%);
}

.screen-phone img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 31px;
  object-fit: cover;
}

.screen-feature .screen-phone:first-child {
  justify-self: end;
  margin-bottom: -14px;
}

.screen-feature .screen-phone:last-child {
  justify-self: end;
  margin-bottom: -14px;
}

.screen-feature:nth-child(1) .screen-phone {
  transform: translate(14px, -8px) rotate(-7deg) scale(1.02);
}

.screen-feature:nth-child(2) .screen-phone {
  transform: translate(-18px, -8px) rotate(7deg) scale(1.02);
}

.screen-feature:nth-child(3) .screen-phone {
  transform: translate(14px, -8px) rotate(-6deg) scale(1.02);
}

.screen-feature:nth-child(4) .screen-phone {
  transform: translate(-18px, -8px) rotate(7deg) scale(1.02);
}

.screen-feature:nth-child(5) .screen-phone {
  transform: translate(14px, -8px) rotate(-7deg) scale(1.02);
}

.screen-feature svg {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--gold);
}

.screen-feature h2,
.screen-steps h2,
.screen-faq h2,
.support-cta h2,
.screen-pricing h2 {
  margin: 0 0 10px;
  color: #fff9f1;
  font-size: 21px;
  line-height: 1.14;
}

.screen-feature p,
.screen-steps p,
.screen-faq p,
.support-cta p,
.screen-pricing p {
  margin: 0;
  color: #b6aa9e;
  font-size: 14px;
  line-height: 1.6;
}

.screen-feature > div:not(.screen-phone) {
  max-width: 240px;
  position: relative;
  z-index: 1;
}

.feature-actions {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.feature-actions .button {
  width: 100%;
  min-height: 62px;
  justify-content: center;
  font-size: 18px;
}

.screen-steps article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(180px, 260px);
  align-items: center;
  gap: 22px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.screen-steps article > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #14100b;
  font-weight: 900;
}

.screen-steps img {
  justify-self: end;
  max-width: 220px;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
}

.screen-steps .qr-shot {
  padding: 12px;
  border-radius: 10px;
  background: #fff;
}

.section-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.billing-toggle {
  width: min(100%, 330px);
  min-height: 46px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #b6aa9e;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.billing-toggle strong {
  display: grid;
  place-items: center;
  min-height: 36px;
  border-radius: 999px;
  background: var(--gold);
  color: #14100b;
}

.screen-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.screen-pricing article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 480px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.screen-pricing article.featured {
  border-color: rgba(216, 180, 126, 0.86);
  box-shadow: 0 0 0 1px rgba(216, 180, 126, 0.18), 0 24px 70px rgba(0, 0, 0, 0.26);
}

.screen-pricing .badge {
  width: max-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #14100b;
  font-size: 12px;
  font-weight: 900;
}

.screen-pricing .price {
  display: block;
  margin: 10px 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 45px;
  font-weight: 600;
  line-height: 1;
}

.screen-pricing ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
  color: #d8d1c8;
  font-size: 13px;
  line-height: 1.4;
}

.screen-pricing li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold);
}

.screen-pricing .button {
  align-self: end;
  width: 100%;
}

.pricing-benefits.compact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.pricing-benefits.compact article {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.pricing-benefits.compact svg {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  color: var(--gold);
}

.pricing-benefits.compact strong,
.pricing-benefits.compact span {
  display: block;
}

.pricing-benefits.compact span {
  margin-top: 5px;
  color: #b6aa9e;
  font-size: 12px;
}

.screen-faq article,
.support-cta {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.screen-faq h2 {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 18px;
}

.screen-faq svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.support-cta {
  margin-top: 20px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 180, 126, 0.18), transparent 20rem),
    rgba(255, 255, 255, 0.035);
}

.support-cta .button {
  margin-top: 18px;
}

.trial-page {
  min-height: calc(100svh - 88px);
  display: grid;
  place-items: center;
  padding: 34px 0 64px;
}

.trial-card {
  width: min(100%, 640px);
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 180, 126, 0.18), transparent 22rem),
    rgba(255, 255, 255, 0.035);
  text-align: center;
}

.trial-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.trial-card h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.98;
}

.trial-card p:not(.eyebrow) {
  max-width: 480px;
  margin: 18px auto 0;
  color: #d8d1c8;
  font-size: 16px;
  line-height: 1.65;
}

.trial-loader {
  width: 44px;
  height: 44px;
  margin: 28px auto 0;
  border: 3px solid rgba(216, 180, 126, 0.22);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: trial-spin 0.8s linear infinite;
}

.trial-success {
  width: min(100%, 360px);
  margin: 28px auto 0;
  padding: 18px;
  border: 1px solid rgba(216, 180, 126, 0.38);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.trial-success span {
  display: block;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trial-credential + .trial-credential {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trial-success strong {
  display: block;
  margin-top: 8px;
  color: var(--cream);
  font-family: "Inter", sans-serif;
  font-size: clamp(34px, 8vw, 48px);
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.trial-user-fields {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  font-family: "Inter", sans-serif;
}

.trial-user-fields div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  align-items: center;
}

.trial-user-fields dt,
.trial-user-fields dd {
  margin: 0;
}

.trial-user-fields dt {
  color: #d8d1c8;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.trial-user-fields dd {
  color: var(--cream);
  font-size: 18px;
  font-weight: 900;
  text-align: left;
  overflow-wrap: anywhere;
}

.trial-card .trial-success p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.trial-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.trial-actions .button {
  cursor: pointer;
}

@keyframes trial-spin {
  to {
    transform: rotate(360deg);
  }
}

.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;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  width: min(560px, calc(100vw - 48px));
  padding: 16px;
  border: 1px solid rgba(216, 180, 126, 0.32);
  border-radius: 11px;
  background: rgba(8, 13, 19, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
  color: #d8d1c8;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.cookie-banner div {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  min-height: 38px;
  border: 1px solid rgba(216, 180, 126, 0.44);
  border-radius: 8px;
  padding: 0 14px;
  background: transparent;
  color: var(--cream);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.cookie-banner button[data-consent="accept"] {
  background: var(--gold);
  color: #14100b;
}

@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;
  }

  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-hero,
  .topic-steps,
  .topic-card-grid,
  .topic-faq-grid,
  .screen-pricing,
  .pricing-benefits.compact {
    grid-template-columns: 1fr;
  }

  .feature-screen-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .screen-feature.wide {
    grid-column: auto;
  }

  .screen-feature {
    grid-column: span 2;
  }

  .screen-feature:nth-child(4) {
    grid-column: span 2;
  }

  .screen-feature:nth-child(5) {
    grid-column: 2 / span 2;
  }

  .screen-feature {
    grid-template-columns: minmax(190px, 0.88fr) minmax(0, 1fr);
    min-height: 300px;
    padding: 22px 38px;
  }

  .screen-steps article {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .screen-steps img {
    grid-column: 2;
    justify-self: start;
  }

  .topic-media img {
    width: min(720px, 92vw);
  }

  .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;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
  }

  .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: space-between;
  }

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

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

  .top-cta {
    display: none;
  }

  .mobile-menu {
    margin-left: 0;
  }

  .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,
  .faq-grid,
  .seo-link-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .topic-hero {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    text-align: center;
  }

  .topic-hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .screen-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .screen-heading h1 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .feature-screen-grid {
    grid-template-columns: 1fr;
  }

  .screen-feature,
  .screen-feature:nth-child(4),
  .screen-feature:nth-child(5) {
    grid-column: auto;
  }

  .screen-steps article {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .screen-feature {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
    min-height: 230px;
    gap: 16px;
    padding: 18px;
    border-radius: 14px;
    text-align: left;
  }

  .screen-feature > div:not(.screen-phone) {
    max-width: none;
  }

  .screen-phone {
    width: min(100%, 146px);
    padding: 4px;
    border-radius: 26px;
  }

  .screen-phone::before {
    top: 7px;
    width: 34px;
    height: 9px;
  }

  .screen-phone img {
    border-radius: 22px;
  }

  .screen-feature .screen-phone:first-child,
  .screen-feature .screen-phone:last-child {
    margin-bottom: -10px;
  }

  .screen-feature:nth-child(1) .screen-phone {
    transform: translate(14px, 6px) rotate(-7deg) scale(1);
  }

  .screen-feature:nth-child(2) .screen-phone {
    transform: translate(-14px, 7px) rotate(7deg) scale(1);
  }

  .screen-feature:nth-child(3) .screen-phone {
    transform: translate(14px, 7px) rotate(-6deg) scale(1);
  }

  .screen-feature:nth-child(4) .screen-phone {
    transform: translate(-14px, 7px) rotate(7deg) scale(1);
  }

  .screen-feature:nth-child(5) .screen-phone {
    transform: translate(14px, 6px) rotate(-7deg) scale(1);
  }

  .screen-feature svg {
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
  }

  .screen-feature h2 {
    font-size: 22px;
  }

  .screen-feature p {
    font-size: 14px;
    line-height: 1.55;
  }

  .screen-steps article > span {
    width: 38px;
    height: 38px;
  }

  .screen-steps img {
    grid-column: auto;
    justify-self: center;
    max-height: 220px;
  }

  .screen-pricing article {
    min-height: 0;
  }

  .section-actions {
    width: 100%;
  }

  .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;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: calc(100vw - 28px);
  }

  .cookie-banner div {
    justify-content: stretch;
  }

  .cookie-banner button {
    flex: 1;
  }
}
