@font-face {
  font-family: "Brockmann";
  src: url("fonts/Brockmann-Medium.otf") format("opentype");
  font-weight: 500 900;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --page: #fff4e5;
  --page-deep: #f7e2c8;
  --surface: #fffdf8;
  --surface-warm: #f8e8d1;
  --crust: #321508;
  --crust-soft: #70462c;
  --muted: #886b55;
  --line: rgba(58, 29, 16, .14);
  --line-strong: rgba(58, 29, 16, .24);
  --orange: #d97916;
  --orange-soft: #f5c77d;
  --green: #2f6a3b;
  --berry: #b84543;
  --shadow: rgba(58, 29, 16, .16);
  --max: 1120px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .72), rgba(255, 244, 229, 0) 360px),
    repeating-linear-gradient(90deg, rgba(58, 29, 16, .018), rgba(58, 29, 16, .018) 1px, transparent 1px, transparent 9px),
    var(--page);
  color: var(--crust);
  font-family: "Brockmann", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.page {
  min-height: 100dvh;
  overflow: hidden;
}

.container {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  background: rgba(255, 244, 229, .84);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(100% - 32px, var(--max));
  height: 62px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--crust);
  text-decoration: none;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  color: var(--crust);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(58, 29, 16, .16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--crust-soft);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--crust);
  color: #fffdf8;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(58, 29, 16, .22);
}

.button.secondary {
  color: var(--crust);
  background: rgba(255, 253, 248, .72);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button.orange {
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(217, 121, 22, .25);
}

.button:focus-visible,
.choice:focus-visible,
.plan:focus-visible {
  outline: 3px solid rgba(217, 121, 22, .32);
  outline-offset: 3px;
}

.hero {
  padding: 54px 0 42px;
}

.hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.headline {
  max-width: 660px;
  margin: 0;
  color: var(--crust);
  font-size: 52px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.headline.large {
  font-size: 58px;
}

.lead {
  max-width: 560px;
  margin: 0;
  color: var(--crust-soft);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  padding-top: 8px;
}

.proof {
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .7);
}

.proof strong {
  display: block;
  color: var(--crust);
  font-size: 19px;
  line-height: 1.1;
}

.proof span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 520px;
}

.shot-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface-warm);
  box-shadow: 0 24px 70px var(--shadow);
}

.shot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
}

.photo-card {
  border-radius: 22px;
}

.photo-card img {
  aspect-ratio: 1 / 1;
}

.photo-collage {
  position: relative;
  width: min(78vw, 430px);
  min-height: 430px;
}

.collage-main {
  position: absolute;
  left: 0;
  top: 52px;
  width: 318px;
  transform: rotate(-2deg);
}

.collage-tile {
  position: absolute;
  width: 146px;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(58, 29, 16, .16);
}

.collage-tile.top {
  top: 0;
  right: 6px;
  transform: rotate(4deg);
}

.collage-tile.middle {
  right: 0;
  top: 158px;
  transform: rotate(-3deg);
}

.collage-tile.bottom {
  right: 54px;
  bottom: 0;
  transform: rotate(5deg);
}

.value-photo {
  width: min(76vw, 390px);
}

.paywall-photo {
  width: min(74vw, 360px);
}

.photo-pair {
  width: min(78vw, 430px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.photo-pair .photo-card:nth-child(2) {
  margin-top: 54px;
}

.hero-shot {
  width: min(74vw, 305px);
  margin: 0 auto;
  transform: rotate(-2deg);
}

.mini-shot {
  position: absolute;
  width: 150px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(58, 29, 16, .18);
}

.mini-shot.left {
  left: 0;
  bottom: 32px;
  transform: rotate(4deg);
}

.mini-shot.right {
  right: 0;
  top: 36px;
  transform: rotate(5deg);
}

.section {
  padding: 62px 0;
}

.section.alt {
  background: rgba(255, 253, 248, .48);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.section-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-copy h2,
.compact-title {
  max-width: 560px;
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.section-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--crust-soft);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  max-width: 520px;
}

.feature-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .7);
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fffdf8;
  background: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.feature-row strong {
  display: block;
  color: var(--crust);
  font-size: 16px;
  line-height: 1.2;
}

.feature-row div > span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

.shot-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.shot-pair .shot-card:nth-child(2) {
  margin-top: 54px;
}

.image-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 18px 18px;
  scrollbar-width: none;
}

.image-rail::-webkit-scrollbar {
  display: none;
}

.rail-shot {
  width: 214px;
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.guide-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

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

.topic-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  padding: 12px;
  color: var(--crust);
  text-decoration: none;
  background: rgba(255, 253, 248, .78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.topic-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.topic-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.topic-card strong {
  font-size: 20px;
  line-height: 1.18;
}

.seo-page .nav {
  position: relative;
}

.seo-hero {
  padding: 44px 0 56px;
}

.breadcrumb {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--crust-soft);
  text-decoration: none;
}

.seo-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.seo-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.seo-copy .lead {
  max-width: 620px;
}

.seo-kicker {
  color: var(--orange);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.keyword-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 640px;
}

.keyword-strip span {
  padding: 8px 10px;
  color: var(--crust-soft);
  background: rgba(255, 253, 248, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.seo-photo {
  width: min(82vw, 420px);
  margin: 0 auto;
}

.content-columns {
  display: grid;
  gap: 18px;
}

.content-card,
.faq-item {
  padding: 18px;
  background: rgba(255, 253, 248, .74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-card h3,
.faq-item h3 {
  margin: 0 0 8px;
  color: var(--crust);
  font-size: 21px;
  line-height: 1.2;
}

.content-card p,
.faq-item p {
  margin: 0;
  color: var(--crust-soft);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.inline-links a {
  color: var(--crust);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(217, 121, 22, .34);
}

.cta-band {
  padding: 54px 0 calc(64px + var(--safe-bottom));
  background: var(--crust);
  color: #fffdf8;
}

.cta-band .container {
  display: grid;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  margin: 0;
  color: #fffdf8;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: 0;
}

.cta-band p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 253, 248, .74);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.footer {
  padding: 28px 0 calc(34px + var(--safe-bottom));
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--crust-soft);
  text-decoration: none;
}

.funnel-page {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.funnel-shell {
  width: min(100% - 32px, 1060px);
  margin: 0 auto;
  padding: 18px 0 24px;
}

.funnel-topbar {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.progress {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(58, 29, 16, .18);
}

.dot.active {
  width: 26px;
  background: var(--orange);
}

.direct-flow .progress .dot:first-child {
  display: none;
}

.stage {
  display: none;
  min-height: calc(100dvh - 130px);
  align-items: center;
}

.stage.active {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.stage.has-media.active {
  align-items: center;
}

.step-label {
  color: var(--orange);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 620px;
}

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

.choice {
  width: 100%;
  min-height: 74px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .84);
  color: var(--crust);
  border-radius: 8px;
  padding: 15px 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(58, 29, 16, .06);
}

.choice span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 5px;
}

.visual {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.funnel-shot {
  width: min(74vw, 276px);
}

.summary {
  display: grid;
  gap: 10px;
  max-width: 620px;
}

.summary-row {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .78);
  border-radius: 8px;
  padding: 14px 15px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.summary-row strong {
  color: var(--crust);
  font-size: 15px;
}

.paywall {
  display: grid;
  gap: 12px;
  max-width: 620px;
  width: 100%;
}

.plan {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .84);
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  color: var(--crust);
}

.plan.selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(217, 121, 22, .18);
}

.plan-title {
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.plan-sub {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-top: 5px;
  line-height: 1.35;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 8px;
  background: rgba(47, 106, 59, .12);
  color: var(--green);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  white-space: nowrap;
}

.price strong {
  font-size: 19px;
  line-height: 1.1;
}

.price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.fineprint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  max-width: 620px;
}

.fineprint a {
  color: var(--crust-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.unlock-page,
.download-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px 18px calc(28px + var(--safe-bottom));
}

.compact-unlock-page {
  padding: 16px 14px calc(18px + var(--safe-bottom));
}

.center-panel {
  width: min(100%, 920px);
  display: grid;
  gap: 26px;
  align-items: center;
}

.unlock-panel {
  width: min(100%, 620px);
  display: block;
}

.success-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.unlock-card {
  gap: 10px;
}

.unlock-card .brand {
  margin-bottom: 2px;
}

.unlock-card .headline {
  max-width: 560px;
  font-size: clamp(30px, 7vw, 42px);
  line-height: 1.02;
}

.unlock-card .lead {
  font-size: 15px;
  line-height: 1.38;
}

.unlock-steps {
  width: 100%;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.unlock-steps li {
  padding: 11px 12px;
  border: 1px solid rgba(54, 36, 19, .12);
  border-radius: 8px;
  background: rgba(255, 253, 248, .72);
}

.unlock-step-content {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.unlock-step-content.has-action {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 12px;
}

.unlock-step-copy {
  min-width: 0;
}

.unlock-steps strong,
.unlock-steps small {
  display: block;
  overflow-wrap: break-word;
}

.unlock-steps strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.unlock-steps small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.unlock-step-button {
  width: fit-content;
  max-width: 100%;
  display: inline-grid;
  align-items: center;
  justify-content: center;
  justify-self: end;
  position: relative;
  text-align: center;
  white-space: nowrap;
}

.unlock-step-button > .button-width-proxy,
.unlock-step-button > .button-visible-label {
  grid-area: 1 / 1;
}

.button-width-proxy {
  opacity: 0;
  pointer-events: none;
}

.button-visible-label {
  z-index: 1;
}

.hint {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.redeem-card {
  max-width: 520px;
}

.redeem-status {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(49, 106, 58, .18);
  border-radius: 8px;
  background: rgba(255, 253, 248, .78);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.redeem-status-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #fffdf8;
  font-size: 13px;
  line-height: 1;
}

.redeem-actions {
  width: 100%;
  display: grid;
  gap: 10px;
}

.redeem-actions .button {
  min-height: 42px;
}

.download-card {
  width: min(100%, 430px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .hero-grid,
  .section-grid,
  .seo-grid,
  .cta-band .container,
  .center-panel {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .82fr);
  }

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

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

  .section-grid.reverse .section-media {
    order: -1;
  }

  .stage.has-media.active {
    grid-template-columns: minmax(0, .96fr) minmax(260px, .72fr);
  }

  .unlock-step-content.has-action .unlock-step-button {
    width: fit-content;
  }
}

@media (min-width: 980px) {
  .headline {
    font-size: 66px;
  }

  .headline.large {
    font-size: 74px;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-media {
    min-height: 620px;
  }

  .hero-shot {
    width: 342px;
  }

  .mini-shot {
    width: 176px;
  }

  .rail-shot {
    width: 248px;
  }
}

@media (max-width: 719px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-inner {
    width: min(100% - 24px, var(--max));
  }

  .nav-actions .button.secondary {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  .headline,
  .headline.large {
    font-size: 42px;
  }

  .section-copy h2,
  .compact-title,
  .cta-band h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 16px;
  }

  .proof-row,
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-shot {
    width: min(72vw, 270px);
  }

  .mini-shot {
    width: 118px;
  }

  .mini-shot.left {
    left: -4px;
    bottom: 42px;
  }

  .mini-shot.right {
    right: -6px;
    top: 42px;
  }

  .photo-collage {
    width: min(100%, 356px);
    min-height: 360px;
  }

  .collage-main {
    width: 254px;
    top: 46px;
  }

  .collage-tile {
    width: 112px;
  }

  .collage-tile.middle {
    top: 136px;
  }

  .collage-tile.bottom {
    right: 42px;
  }

  .value-photo,
  .paywall-photo {
    width: min(86vw, 330px);
  }

  .photo-pair {
    width: min(88vw, 350px);
    gap: 10px;
  }

  .shot-pair {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .choice-grid.two {
    grid-template-columns: 1fr;
  }

  .stage {
    min-height: auto;
    padding: 22px 0 34px;
  }

  .stage[data-stage="2"].active .visual,
  .stage[data-stage="3"].active .visual,
  .stage[data-stage="4"].active .visual {
    order: -1;
  }

  .stage[data-stage="5"].active .section-copy {
    padding-bottom: 82px;
  }

  .stage[data-stage="5"].active .action-row {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(12px + var(--safe-bottom));
    z-index: 30;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 244, 229, .94);
    box-shadow: 0 16px 34px rgba(58, 29, 16, .16);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
  }

  .stage[data-stage="5"].active .action-row .button {
    min-height: 48px;
    padding: 0 14px;
  }

  .funnel-shot {
    width: min(70vw, 236px);
  }
}
