@font-face {
  font-family: "Suisse Intl";
  src: url("./assets/brand/suisse-intl-regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Adobe Caslon Pro";
  src: url("./assets/brand/adobe-caslon-pro-italic.ttf") format("truetype");
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #fbfcf4;
  --ink: #070806;
  --warm: #f8e4ba;
  --olive: #555a45;
  --clay: #7d5e45;
  --line: rgba(7, 8, 6, 0.16);
  --line-dark: rgba(251, 252, 244, 0.2);
  --max: 1180px;
  --gutter: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Suisse Intl", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--paper);
}

.site-header > *,
.hero-content > * {
  min-width: 0;
}

.section-grid > *,
.method-feature > *,
.method-bullets > *,
.audience-grid > *,
.cuts-grid > *,
.gustavo-section > *,
.feedback-layout > *,
.contact-section > * {
  min-width: 0;
}

.brand img {
  height: auto;
  width: 206px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

.main-nav a,
.header-cta {
  opacity: 0.88;
}

.main-nav a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(251, 252, 244, 0.74);
  border-radius: 999px;
  font-size: 14px;
}

@media (min-width: 1121px) {
  .main-nav,
  .header-cta {
    transform: translateX(clamp(0px, calc((100vw - 1180px) * 0.35), 44px));
  }
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(7, 8, 6, 0.96) 48%, rgba(7, 8, 6, 0.22) 72%, rgba(7, 8, 6, 0) 100%);
  pointer-events: none;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(var(--max), calc(100% - 48px));
  min-height: 84svh;
  margin: 0 auto;
  padding: 110px 0 46px;
}

.hero-content > * {
  max-width: 560px;
}

.hero-portrait {
  position: absolute;
  inset: 0 0 0 52%;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: currentColor;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  opacity: 0.72;
}

h1,
h2,
h3,
p,
li,
dd,
dt,
summary {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-family: "Suisse Intl", Arial, sans-serif;
  font-size: 64px;
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: 0;
}

.mobile-break {
  display: none;
}

h2 {
  margin-bottom: 22px;
  font-size: 42px;
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 32px;
  font-size: 21px;
  line-height: 1.42;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button-primary {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--paper);
  border-color: var(--paper);
}

.button-secondary {
  background: transparent;
  color: var(--paper);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(251, 252, 244, 0.14);
}

.signature {
  margin: 0;
  font-family: "Adobe Caslon Pro", Georgia, serif;
  font-size: 34px;
  font-style: italic;
}

.signal-strip {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0 0;
}

.signal-strip dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
}

.signal-strip div {
  min-height: 104px;
  padding: 20px;
}

.signal-strip div + div {
  border-left: 1px solid var(--line);
}

.signal-strip dt {
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 18px;
  line-height: 1.12;
}

.signal-strip dd {
  margin: 0;
  max-width: 240px;
  color: rgba(7, 8, 6, 0.66);
  font-size: 15px;
  line-height: 1.25;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 92px;
  align-items: start;
}

.intro-copy p,
.line-list p,
.method-copy p,
.gustavo-copy p,
.feedback-copy p,
.text-link,
.section-heading p,
.contact-copy p {
  max-width: 680px;
  color: rgba(7, 8, 6, 0.78);
}

.intro-copy p:last-child,
.line-list p:last-child,
.method-copy p:last-child,
.gustavo-copy p:last-child,
.feedback-copy p:last-child,
.section-heading p:last-child,
.contact-copy p:last-child {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.text-link:hover,
.text-link:focus-visible {
  border-bottom-color: transparent;
}

.line-list ul,
.audience-block ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.line-list li,
.audience-block li {
  position: relative;
  padding-left: 28px;
}

.line-list li::before,
.audience-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 1px;
  background: currentColor;
}

.section-dark {
  width: 100%;
  max-width: none;
  background: var(--ink);
  color: var(--paper);
}

.section-dark > * {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.method-section {
  padding-bottom: 56px;
}

.method-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 52px;
}

.method-copy p,
.section-dark .section-heading p {
  color: rgba(251, 252, 244, 0.74);
}

.text-link-light {
  color: var(--paper);
}

.method-bullets {
  display: grid;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.method-bullets li {
  position: relative;
  min-height: 58px;
  padding: 18px 0 18px 30px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(251, 252, 244, 0.78);
}

.method-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 29px;
  width: 12px;
  height: 1px;
  background: var(--warm);
}

.method-cuts {
  margin-bottom: 0;
}

.section-dark .cut-card {
  border-color: var(--line-dark);
  box-shadow: 0 18px 46px rgba(7, 8, 6, 0.28);
}

.method-cta-section {
  padding-top: 0;
  padding-bottom: 104px;
}

.method-cta-section > .method-cta {
  width: min(620px, calc(100% - 48px));
}

.method-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 42px;
  background: var(--warm);
  border-color: var(--warm);
  color: var(--ink);
  text-align: center;
}

.method-cta .section-kicker {
  margin-bottom: 16px;
  color: var(--clay);
  opacity: 1;
}

.method-cta h2 {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: 34px;
}

.method-cta p:not(.section-kicker) {
  max-width: 500px;
  margin: 0 0 28px;
  color: rgba(7, 8, 6, 0.72);
}

.method-cta .button-primary {
  width: fit-content;
  min-width: 220px;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.method-cta .button-primary:hover,
.method-cta .button-primary:focus-visible {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.audience-block {
  padding: 34px;
}

.audience-block p {
  max-width: 480px;
  margin: 0;
  color: rgba(7, 8, 6, 0.72);
}

.audience-block + .audience-block {
  border-left: 1px solid var(--line);
}

.audience-block-muted {
  background: rgba(248, 228, 186, 0.28);
}

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

.cut-card {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.cut-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

.cut-thumb::after,
.feedback-video-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(251, 252, 244, 0.78);
  border-radius: 50%;
  background: rgba(7, 8, 6, 0.62);
  box-shadow: 0 10px 34px rgba(7, 8, 6, 0.28);
  pointer-events: none;
}

.cut-thumb::before,
.feedback-video-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  transform: translate(-34%, -50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 17px solid var(--paper);
  pointer-events: none;
}

.cut-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.cut-body {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.cut-body span {
  display: block;
  order: 2;
  margin: 9px 0 0;
  color: var(--clay);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.cut-body strong {
  order: 1;
  color: var(--ink);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.08;
}

.cut-card:hover .cut-thumb img,
.cut-card:focus-visible .cut-thumb img {
  transform: scale(1.035);
}

.gustavo-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(340px, 1fr);
  gap: 72px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.gustavo-portrait {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(248, 228, 186, 0.2);
}

.gustavo-portrait img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 24%;
  background: var(--ink);
}

.feedback-section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(300px, 0.58fr);
  gap: 72px;
  align-items: center;
}

.feedback-copy p {
  color: rgba(251, 252, 244, 0.76);
}

.feedback-quotes {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.feedback-quotes blockquote {
  margin: 0;
  padding: 0 0 0 22px;
  border-left: 1px solid var(--warm);
}

.feedback-quotes p {
  margin: 0;
  color: var(--paper);
  font-size: 18px;
  line-height: 1.34;
}

.feedback-link {
  margin-top: 28px;
  color: var(--paper);
}

.feedback-video {
  margin: 0;
}

.feedback-video-frame {
  position: relative;
}

.feedback-video-frame.is-playing::before,
.feedback-video-frame.is-playing::after {
  opacity: 0;
}

.feedback-video video {
  width: 100%;
  max-height: 720px;
  aspect-ratio: 464 / 832;
  border: 1px solid var(--line-dark);
  background: var(--ink);
  object-fit: contain;
}

.feedback-video figcaption {
  margin-top: 14px;
  color: rgba(251, 252, 244, 0.62);
  font-size: 13px;
  line-height: 1.35;
}

.offer-section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  border: 1px solid var(--line-dark);
}

.plan-grid-single {
  grid-template-columns: minmax(0, 1fr);
  width: min(620px, calc(100% - 48px));
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 278px;
  padding: 26px;
  color: var(--paper);
}

.plan-card + .plan-card {
  border-left: 1px solid var(--line-dark);
}

.plan-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--warm);
  font-size: 13px;
  text-transform: uppercase;
}

.plan-card h3 {
  min-height: 26px;
  margin-bottom: 18px;
}

.plan-card p {
  color: rgba(251, 252, 244, 0.72);
}

.plan-card > strong {
  display: block;
  margin-top: 34px;
  font-weight: 400;
}

.plan-card .plan-price {
  min-height: 58px;
  margin: 0 0 16px;
  color: var(--paper);
}

.plan-card .plan-price strong {
  display: block;
  margin: 0;
  color: inherit;
  font-size: 42px;
  font-weight: 400;
  line-height: 0.98;
}

.plan-card .plan-price small {
  display: block;
  margin-top: 7px;
  color: rgba(251, 252, 244, 0.68);
  font-size: 14px;
  line-height: 1.32;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.payment-methods li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(248, 228, 186, 0.52);
  border-radius: 999px;
  color: rgba(251, 252, 244, 0.78);
  font-size: 13px;
  line-height: 1.1;
}

.plan-features {
  display: grid;
  gap: 9px;
  margin: 22px 0 24px;
  padding: 0;
  color: rgba(251, 252, 244, 0.78);
  font-size: 15px;
  line-height: 1.35;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 18px;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm);
}

.plan-checkout.hotmart-fb.hotmart__button-checkout {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid var(--warm) !important;
  border-radius: 999px;
  background: var(--warm) !important;
  box-shadow: none !important;
  color: var(--ink) !important;
  font-size: 14px;
  font-weight: 400;
  text-shadow: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.plan-checkout.hotmart-fb.hotmart__button-checkout:hover,
.plan-checkout.hotmart-fb.hotmart__button-checkout:focus-visible {
  background: var(--paper) !important;
  border-color: var(--paper) !important;
  color: var(--ink) !important;
}

.plan-card-featured {
  background: var(--warm);
  color: var(--ink);
}

.plan-card-featured span,
.plan-card-featured p {
  color: rgba(7, 8, 6, 0.72);
}

.plan-card-featured .plan-price {
  color: var(--ink);
}

.plan-card-featured .plan-price small,
.plan-card-featured .plan-features {
  color: rgba(7, 8, 6, 0.72);
}

.plan-card-featured .plan-features li::before {
  background: var(--ink);
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 24px;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  margin-left: 24px;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  margin-bottom: 24px;
  color: rgba(7, 8, 6, 0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 132px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  outline: 2px solid rgba(248, 228, 186, 0.86);
  outline-offset: 2px;
}

.contact-form .button {
  width: fit-content;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--olive);
  font-size: 15px;
}

.cut-dialog {
  width: min(980px, calc(100% - 32px));
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.cut-dialog::backdrop {
  background: rgba(7, 8, 6, 0.72);
}

.cut-dialog-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
  background: var(--paper);
  border: 1px solid rgba(251, 252, 244, 0.28);
  box-shadow: 0 24px 70px rgba(7, 8, 6, 0.32);
}

.cut-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
}

.cut-dialog video {
  width: 100%;
  height: 100%;
  min-height: 392px;
  background: var(--ink);
  object-fit: contain;
}

.cut-dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.cut-dialog-copy > p:first-child {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 13px;
  line-height: 1.3;
  text-transform: uppercase;
}

.cut-dialog-copy h3 {
  margin-bottom: 18px;
}

.cut-dialog-copy p {
  color: rgba(7, 8, 6, 0.72);
}

.cut-dialog-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.cut-dialog-copy .button {
  width: fit-content;
  margin-top: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, auto);
  align-items: center;
  gap: 32px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 42px;
  border-top: 1px solid var(--line);
  color: rgba(7, 8, 6, 0.72);
  font-size: 15px;
}

.footer-brand {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.footer-brand img {
  max-width: 206px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.footer-instagram {
  display: inline-grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.footer-instagram-icon {
  width: 22px;
  height: 22px;
  color: var(--ink);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-instagram strong {
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.15;
}

.footer-instagram:hover strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-company {
  display: grid;
  gap: 5px;
  min-width: 210px;
  padding-left: 22px;
  border-left: 1px solid var(--line);
  color: rgba(7, 8, 6, 0.68);
  font-style: normal;
  line-height: 1.25;
  text-align: right;
}

.footer-company strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.footer-company span {
  font-size: 14px;
}

:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .hero-content > * {
    max-width: 680px;
  }

  .hero-portrait {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(360px, 48vw, 520px);
  }

  .hero-portrait img {
    object-position: center 28%;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  h1 {
    max-width: 680px;
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  .section-grid,
  .method-feature,
  .gustavo-section,
  .feedback-layout,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .cuts-grid,
  .signal-strip dl {
    grid-template-columns: 1fr 1fr;
  }

  .cut-dialog-panel {
    grid-template-columns: 1fr;
  }

  .cut-dialog video {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .signal-strip div:nth-child(odd) {
    border-left: 0;
  }

  .signal-strip div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .plan-card + .plan-card {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .hero-content,
  .section:not(.section-dark),
  .section-dark > *,
  .signal-strip,
  .plan-grid,
  .site-footer {
    width: auto;
    margin-left: 24px;
    margin-right: 24px;
  }

  .section-dark {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .site-header {
    gap: 16px;
    padding: 16px 0;
  }

  .brand img {
    width: 154px;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    padding-top: 74px;
    padding-bottom: 22px;
  }

  .hero-portrait {
    height: 258px;
  }

  h1 {
    width: 100%;
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 1;
    max-width: 100%;
  }

  h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  h3 {
    font-size: 21px;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 15.5px;
    line-height: 1.36;
  }

  .hero-subtitle,
  .hero-actions {
    width: 100%;
    max-width: 342px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 22px;
  }

  .signal-strip dl {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    min-height: 82px;
  }

  .signal-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .signature {
    font-size: 27px;
  }

  .mobile-break {
    display: block;
  }

  .intro-copy,
  .method-copy,
  .intro-copy p,
  .intro-copy ul,
  .method-copy h2,
  .method-copy p,
  .method-copy .text-link,
  .method-bullets {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .section {
    padding: 72px 0;
  }

  .section-dark {
    padding: 72px 0;
  }

  .method-section {
    padding-bottom: 42px;
  }

  .method-cta-section {
    padding-top: 0;
    padding-bottom: 72px;
  }

  .method-cta {
    padding: 30px 24px;
  }

  .method-cta h2 {
    max-width: 100%;
    font-size: 27px;
  }

  .method-cta p:not(.section-kicker) {
    max-width: 100%;
  }

  .method-cta .button-primary {
    width: 100%;
  }

  .audience-grid,
  .cuts-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .audience-block + .audience-block,
  .plan-card + .plan-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .plan-card + .plan-card {
    border-top-color: var(--line-dark);
  }

  .audience-block,
  .plan-card {
    padding: 24px;
  }

  .cut-card {
    min-height: auto;
  }

  .cut-body {
    padding: 20px;
  }

  .cut-body span {
    margin-top: 10px;
  }

  .cut-dialog {
    width: min(100% - 20px, 560px);
  }

  .cut-dialog-copy {
    padding: 24px;
  }

  .cut-dialog-copy .button {
    width: 100%;
  }

  summary {
    font-size: 20px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-meta {
    display: grid;
    justify-content: start;
  }

  .footer-company {
    min-width: 0;
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .site-header,
  .hero-content,
  .section:not(.section-dark),
  .section-dark > *,
  .signal-strip,
  .plan-grid,
  .site-footer {
    width: auto;
    margin-left: 24px;
    margin-right: 24px;
  }

  .hero-content > *,
  .intro-copy p,
  .line-list p,
  .line-list ul,
  .method-copy p,
  .gustavo-copy p,
  .feedback-copy p,
  .section-heading,
  .contact-copy p,
  .faq-list,
  .contact-form {
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: 32px;
  }

  .hero-content {
    margin-left: 24px;
    margin-right: 24px;
  }

  h2 {
    max-width: 100%;
    font-size: 28px;
  }
}
