:root {
  --ink: #171511;
  --ink-soft: #2b2821;
  --cream: #f5f0e6;
  --paper: #fffaf1;
  --acid: #d8f34a;
  --blue: #3478c8;
  --blue-dark: #235b97;
  --line: rgba(23, 21, 17, 0.18);
  --radius: 28px;
  --shadow: 0 28px 70px rgba(54, 31, 17, 0.19);
  --header-height: 86px;
  --page-pad: clamp(20px, 4vw, 64px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
summary {
  cursor: pointer;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.reading-progress {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px var(--page-pad);
  border-bottom: 1px solid transparent;
  transition: min-height 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: var(--line);
  background: rgba(245, 240, 230, 0.92);
  box-shadow: 0 10px 34px rgba(23, 21, 17, 0.07);
  backdrop-filter: blur(16px);
}

.site-header:not(.is-scrolled) {
  color: var(--cream);
}

.site-header:not(.is-scrolled) .brand img {
  filter: invert(1);
}

.site-header:not(.is-scrolled) .nav-cta {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.site-header:not(.is-scrolled) .nav-cta:hover {
  border-color: var(--cream);
  background: var(--cream);
}

body.menu-open .site-header {
  color: var(--ink);
}

body.menu-open .site-header .brand img {
  filter: none;
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  width: 112px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 13px;
  font-weight: 800;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  min-height: 46px;
  padding-inline: 18px;
  background: var(--ink);
  color: white;
}

.nav-cta:hover,
.button-dark:hover {
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: clamp(34px, 5vw, 86px);
  min-height: 100svh;
  padding: clamp(126px, 15vh, 170px) var(--page-pad) clamp(42px, 7vh, 80px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 243, 74, 0.08), transparent 24%),
    var(--ink);
  color: var(--cream);
}

.hero::after {
  position: absolute;
  z-index: -2;
  right: 35%;
  bottom: -26vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(245, 240, 230, 0.14);
  border-radius: 50%;
  content: "";
}

.sun-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(245, 240, 230, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.sun-orbit::before {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 8px rgba(216, 243, 74, 0.2);
  content: "";
}

.sun-orbit-one {
  top: 15%;
  left: -8vw;
  width: 20vw;
  height: 20vw;
}

.sun-orbit-one::before {
  top: 12%;
  right: 9%;
}

.sun-orbit-two {
  right: -6vw;
  bottom: 10%;
  width: 21vw;
  height: 21vw;
}

.sun-orbit-two::before {
  bottom: 19%;
  left: 2%;
}

.hero-copy {
  align-self: center;
  max-width: 790px;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(22px, 4vh, 42px);
  padding: 9px 13px;
  border: 1px solid var(--cream);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.06);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(216, 243, 74, 0.2);
  animation: pulse 1.9s ease-in-out infinite;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 15px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.form-success-panel h3 {
  margin: 0;
  font-size: clamp(54px, 7.25vw, 124px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.hero-copy h1 {
  font-size: clamp(54px, 6vw, 104px);
}

.hero h1 em,
.section h2 em,
.form-success-panel h3 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 650px;
  margin: clamp(25px, 4vh, 42px) 0 0;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.48;
}

.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  margin-top: clamp(28px, 4vh, 44px);
  padding: 14px 20px 14px 0;
}

.hero-offer > div:not(.offer-separator) {
  display: grid;
  gap: 5px;
}

.offer-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-offer strong {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 0.9;
}

.hero-offer strong small {
  font-size: 12px;
  letter-spacing: 0;
}

.offer-separator {
  align-self: stretch;
  width: 1px;
  background: rgba(245, 240, 230, 0.42);
  transform: rotate(12deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 25px;
}

.button-dark {
  min-height: 58px;
  padding-inline: 25px;
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.hero .button-dark:hover {
  border-color: var(--cream);
  background: var(--cream);
}

.text-link {
  position: relative;
  padding-block: 12px;
  border-bottom: 1px solid var(--cream);
  font-size: 13px;
  font-weight: 900;
}

.hero-condition {
  margin: 16px 0 0;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.75;
}

.hero-visual {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 575px);
}

.hero-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 0.76;
  border: 2px solid var(--cream);
  border-radius: min(3vw, 42px);
  background: var(--blue-dark);
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  top: -52px;
  left: -58px;
  width: 138px;
  height: 138px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 12px 30px rgba(23, 21, 17, 0.16);
  animation: slow-spin 18s linear infinite;
}

.hero-stamp svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
}

.hero-stamp text {
  fill: var(--ink);
  stroke: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.hero-note {
  position: absolute;
  right: -12px;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 19px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  font-size: 12px;
  font-weight: 900;
  transform: rotate(-3deg);
}

.hero-note span {
  color: var(--ink);
}

.hero-sun-label {
  position: absolute;
  top: 12%;
  right: -42px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.countdown {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-top: clamp(24px, 5vh, 58px);
  border-top: 1px solid rgba(245, 240, 230, 0.34);
}

.countdown > p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
}

.countdown > div {
  display: flex;
  align-items: flex-start;
  gap: clamp(9px, 2vw, 28px);
}

.countdown span {
  display: grid;
  justify-items: center;
  min-width: 56px;
}

.countdown strong {
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 0.9;
}

.countdown small {
  margin-top: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown i {
  font-size: clamp(23px, 3vw, 42px);
  font-style: normal;
  font-weight: 300;
  line-height: 0.85;
}

.countdown.is-expired > div {
  display: block;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 900;
}

.summer-ticker {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--acid);
}

.summer-ticker > div {
  display: flex;
  width: max-content;
  animation: ticker 25s linear infinite;
}

.summer-ticker span,
.summer-ticker i {
  display: block;
  padding: 15px 17px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.summer-ticker i {
  color: var(--blue-dark);
}

.section {
  position: relative;
  padding: clamp(90px, 12vw, 180px) var(--page-pad);
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-tag span {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
}

.section-tag-light {
  color: var(--cream);
}

.section h2 {
  font-size: clamp(46px, 6vw, 99px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 0.85fr) minmax(320px, 0.62fr);
  align-items: start;
  gap: clamp(30px, 5vw, 90px);
  background: var(--cream);
}

.intro-copy p {
  max-width: 700px;
  margin: clamp(28px, 4vw, 50px) 0 0;
  font-size: clamp(18px, 1.75vw, 26px);
  line-height: 1.5;
}

.intro-image {
  position: relative;
  justify-self: end;
  width: min(420px, 100%);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 14px 14px 0 var(--blue);
  transform: rotate(1.5deg);
}

.intro-image::after {
  position: absolute;
  right: 15px;
  bottom: 14px;
  padding: 8px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--acid);
  content: "SOCIAL, MA CON UNA DIREZIONE";
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.intro-image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.offer {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 150px);
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.offer::before {
  position: absolute;
  top: -17vw;
  left: -13vw;
  width: 40vw;
  height: 40vw;
  border: 1px solid rgba(245, 240, 230, 0.16);
  border-radius: 50%;
  content: "";
}

.offer::after {
  position: absolute;
  right: -6vw;
  bottom: -12vw;
  width: 28vw;
  height: 28vw;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  opacity: 0.8;
}

.offer-heading,
.price-card {
  position: relative;
  z-index: 1;
}

.offer-heading .eyebrow {
  color: var(--acid);
}

.price-card {
  padding: clamp(24px, 3.2vw, 48px);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 16px 16px 0 var(--acid);
  transform: rotate(0.8deg);
}

.price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.price-card-top {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(216, 243, 74, 0.2);
}

.price-row {
  display: grid;
  gap: 24px;
  padding: 32px 0 24px;
}

.price-main {
  display: flex;
  align-items: flex-start;
}

.price-main > strong {
  font-size: clamp(86px, 10vw, 150px);
  letter-spacing: -0.09em;
  line-height: 0.7;
}

.price-main > span {
  margin-left: 8px;
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 900;
  line-height: 0.7;
}

.price-main small {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-promo {
  display: grid;
  gap: 9px;
  padding: 18px 20px;
  border: 1px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
  font-weight: 900;
  transform: rotate(-1.5deg);
}

.price-promo span {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-promo strong {
  font-size: clamp(26px, 3vw, 43px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.button-acid {
  width: 100%;
  margin-top: 25px;
  background: var(--ink);
  color: var(--cream);
}

.button-acid:hover {
  background: var(--blue);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--ink);
}

.price-terms {
  margin: 18px 0 0;
  color: rgba(23, 21, 17, 0.7);
  font-size: 10px;
  line-height: 1.45;
}

.included {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 150px);
  background: var(--blue);
  color: var(--cream);
  padding-block: clamp(80px, 9vw, 130px);
}

.included-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.included-heading h2 {
  margin-top: 34px;
}

.included-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 21px 0 23px;
  border-top: 1px solid rgba(245, 240, 230, 0.34);
}

.included-list li:last-child {
  border-bottom: 1px solid rgba(245, 240, 230, 0.34);
}

.included-list li > span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
}

.included-list h3 {
  margin: 0;
  font-size: clamp(22px, 2.25vw, 34px);
  letter-spacing: -0.05em;
}

.included-list p {
  max-width: 640px;
  margin: 7px 0 0;
  color: rgba(245, 240, 230, 0.78);
  font-size: 14px;
  line-height: 1.4;
}

.included-note {
  grid-column: 2;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  margin-top: -40px;
  padding: 24px;
  border: 1px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-1deg);
}

.included-note span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.included-note p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.benefits {
  padding-block: clamp(70px, 8vw, 110px);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.benefits-heading {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  align-items: start;
  gap: 30px;
  margin-bottom: clamp(40px, 5vw, 68px);
}

.benefits-heading h2 {
  font-size: clamp(48px, 5.7vw, 90px);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--ink);
  list-style: none;
}

.benefits-list li {
  min-width: 0;
  padding: clamp(25px, 3vw, 42px);
}

.benefits-list li + li {
  border-left: 1px solid var(--ink);
}

.benefits-list li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: clamp(30px, 4vw, 54px);
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-size: 10px;
  font-weight: 900;
}

.benefits-list h3 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(24px, 2.4vw, 38px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.benefits-list p {
  max-width: 38ch;
  margin: 18px 0 0;
  color: rgba(23, 21, 17, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.creative {
  background: var(--paper);
}

.creative-heading {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  align-items: start;
  gap: 30px;
  margin-bottom: clamp(50px, 8vw, 100px);
}

.creative-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(13px, 2vw, 28px);
  align-items: start;
}

.creative-card {
  margin: 0;
  min-width: 0;
}

.creative-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border: 1px solid var(--ink);
  border-radius: 20px;
  object-fit: contain;
  transition: transform 400ms ease, filter 400ms ease;
}

.creative-card:hover img {
  filter: saturate(1.12);
  transform: translateY(-8px) rotate(0.5deg);
}

.creative-card figcaption {
  display: grid;
  gap: 20px;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 800;
}

.creative-card figcaption span:first-child {
  color: var(--blue-dark);
  text-transform: uppercase;
}

.creative-card figcaption span:last-child {
  max-width: 26ch;
  text-align: left;
}

.steps {
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(68px, 7vw, 100px);
}

.steps::before {
  display: none;
}

.steps-heading {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 30px;
}

.steps-heading h2 {
  max-width: 900px;
  font-size: clamp(48px, 6vw, 92px);
}

.steps-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(34px, 5vw, 84px);
  margin: clamp(34px, 3.5vw, 50px) 0 0;
  padding: 0;
  list-style: none;
}

.steps-list::before {
  position: absolute;
  top: 22px;
  right: 22px;
  left: 22px;
  height: 1px;
  background: rgba(245, 240, 230, 0.42);
  content: "";
}

.steps-list li {
  position: relative;
  min-width: 0;
  padding: 0;
}

.steps-list li:nth-child(2) {
  background: transparent;
}

.steps-list li:nth-child(3) {
  background: transparent;
  color: var(--cream);
}

.steps-list li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
}

.steps-list p {
  margin: 0 0 7px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps-list h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.steps-list small {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(245, 240, 230, 0.7);
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.63fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 150px);
  background: var(--cream);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.faq-heading .eyebrow {
  color: var(--blue-dark);
}

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

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 36px;
  align-items: center;
  gap: 24px;
  padding: 27px 0;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 900;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--blue);
  color: var(--cream);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 720px;
  margin: -5px 56px 28px 0;
  font-size: 15px;
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(440px, 0.72fr);
  gap: clamp(50px, 9vw, 160px);
  align-items: start;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.contact::before {
  position: absolute;
  right: -11vw;
  bottom: -15vw;
  width: 39vw;
  height: 39vw;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.contact-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  margin-top: 36px;
}

.contact-copy > p {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(245, 240, 230, 0.75);
  font-size: 17px;
  line-height: 1.6;
}

.contact-copy > ul {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 800;
}

.contact-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-copy li span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 11px;
}

.contact-direct {
  display: grid;
  gap: 9px;
  margin-top: 50px;
  font-size: 13px;
}

.contact-direct > span {
  margin-bottom: 4px;
  color: rgba(245, 240, 230, 0.55);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direct a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.lead-form {
  margin: 0;
  padding: clamp(24px, 3.3vw, 46px);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 14px 14px 0 var(--acid);
}

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

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading p {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.form-heading span {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form label:not(.privacy-check):not(.form-hp) {
  display: grid;
  gap: 8px;
}

.lead-form label > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 21, 17, 0.35);
  border-radius: 10px;
  background: white;
  font-size: 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-form input,
.lead-form select {
  min-height: 49px;
  padding: 10px 12px;
}

.lead-form textarea {
  min-height: 125px;
  padding: 12px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue-dark);
  box-shadow: 0 0 0 3px rgba(52, 120, 200, 0.2);
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue-dark);
}

.privacy-check > span {
  font-size: 9px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.privacy-check a {
  border-bottom: 1px solid currentColor;
}

.form-hp {
  position: absolute;
  left: -9999px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 15px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--blue);
  color: var(--cream);
  font-size: 13px;
  font-weight: 900;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.form-submit:hover {
  background: var(--acid);
  box-shadow: 0 6px 0 var(--ink);
  transform: translateY(-2px);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 9px;
  line-height: 1.45;
}

.form-status {
  min-height: 14px;
  font-weight: 800;
}

.form-status.is-error {
  color: #a12116;
}

.form-status.is-success {
  color: #176628;
}

.form-success-panel {
  display: none;
  min-height: 560px;
  align-content: center;
  justify-items: start;
}

.lead-form.is-submitted .lead-form-fields {
  display: none;
}

.lead-form.is-submitted .form-success-panel {
  display: grid;
}

.form-success-panel > span {
  margin-bottom: 24px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-success-panel h3 {
  font-size: clamp(45px, 5vw, 74px);
}

.form-success-panel p {
  max-width: 430px;
  margin: 32px 0;
  font-size: 15px;
  line-height: 1.6;
}

.form-success-panel a {
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(150px, 0.55fr));
  gap: 42px;
  padding: 70px var(--page-pad) 32px;
  border-top: 1px solid rgba(245, 240, 230, 0.2);
  background: var(--ink);
  color: var(--cream);
}

.footer-brand img {
  width: 120px !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 2250 / 1134;
  object-fit: contain !important;
  filter: invert(1);
}

.footer-brand p,
.footer-column {
  color: rgba(245, 240, 230, 0.63);
  font-size: 12px;
  line-height: 1.6;
}

.footer-brand p {
  margin: 20px 0 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-column p {
  margin: 0 0 7px;
  color: var(--cream);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--acid);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 230, 0.2);
  color: rgba(245, 240, 230, 0.55);
  font-size: 10px;
}

.back-to-top {
  position: fixed;
  z-index: 70;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.2, 0.65, 0.25, 1), transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.reveal[data-delay="1"] {
  transition-delay: 100ms;
}

.reveal[data-delay="2"] {
  transition-delay: 200ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 9px rgba(216, 243, 74, 0.08); }
}

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

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(57px, 7.8vw, 92px);
  }

  .intro {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .intro-image {
    grid-column: 2;
    justify-self: start;
    width: min(440px, 78%);
  }

  .offer {
    gap: 60px;
  }

  .price-main > strong {
    font-size: 104px;
  }

  .included,
  .faq,
  .contact {
    gap: 70px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 100px var(--page-pad) 40px;
    background: var(--acid);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .admin-bar .site-nav {
    top: 46px;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav > a:not(.nav-cta) {
    padding: 12px 0;
    border-bottom: 1px solid var(--ink);
    font-size: clamp(27px, 5vw, 42px);
    letter-spacing: -0.04em;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 28px;
    min-height: 58px;
  }

  .site-nav.is-open .nav-cta {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--cream);
  }

  .hero {
    grid-template-columns: 1fr 0.75fr;
    min-height: auto;
    padding-top: 132px;
  }

  .hero-copy {
    align-self: start;
  }

  .hero-visual {
    align-self: end;
  }

  .hero-stamp {
    top: -40px;
    left: -36px;
    width: 105px;
    height: 105px;
  }

  .hero-sun-label {
    display: none;
  }

  .hero-note {
    right: -5px;
    padding: 12px;
  }

  .offer,
  .included,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .offer-heading {
    max-width: 760px;
  }

  .price-card {
    width: min(680px, 94%);
    margin-inline: auto;
  }

  .included-heading,
  .faq-heading {
    position: static;
  }

  .included-list {
    width: min(760px, 100%);
    margin-left: auto;
  }

  .included-note {
    grid-column: 1;
    width: min(760px, 100%);
    margin: -20px 0 0 auto;
  }

  .benefits-heading,
  .creative-heading,
  .steps-heading {
    grid-template-columns: 1fr;
  }

  .creative-heading .eyebrow {
    margin-bottom: 0;
  }

  .faq-list {
    width: min(800px, 100%);
    margin-left: auto;
  }

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

  .lead-form {
    width: min(760px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 740px) {
  .admin-bar .site-header {
    top: 0;
  }

  .admin-bar .site-nav {
    top: 0;
  }

  .brand {
    width: 100px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 118px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(55px, 16.5vw, 88px);
  }

  .hero-visual {
    justify-self: center;
    width: min(90%, 480px);
  }

  .hero-stamp {
    left: -30px;
  }

  .hero-note {
    bottom: 5%;
  }

  .countdown {
    grid-column: 1;
  }

  .countdown > p {
    display: none;
  }

  .countdown > div {
    width: 100%;
    justify-content: center;
  }

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

  .intro .section-tag,
  .intro-copy,
  .intro-image {
    grid-column: 1;
  }

  .intro-image {
    justify-self: start;
    width: calc(100% - 12px);
  }

  .price-card {
    width: calc(100% - 10px);
    margin-left: 0;
    box-shadow: 10px 10px 0 var(--acid);
  }

  .price-main > strong {
    font-size: clamp(78px, 24vw, 120px);
  }

  .included-list li {
    grid-template-columns: 35px 1fr;
    gap: 15px;
  }

  .included-note {
    grid-template-columns: 1fr;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .benefits-list li + li {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .benefits-list li > span {
    margin-bottom: 28px;
  }

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

  .steps-list {
    gap: 0;
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .steps-list::before {
    top: 22px;
    right: auto;
    bottom: 22px;
    left: 22px;
    width: 1px;
    height: auto;
  }

  .steps-list li,
  .steps-list li:nth-child(2),
  .steps-list li:nth-child(3) {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 22px;
    min-height: 0;
    padding: 0 0 38px;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .steps-list li:last-child {
    padding-bottom: 0;
  }

  .steps-list li > span {
    grid-column: 1;
    margin: 0;
  }

  .steps-list li > div {
    grid-column: 2;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 470px) {
  .site-header {
    padding-block: 10px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .promo-badge {
    font-size: 9px;
  }

  .hero-offer {
    gap: 13px;
    padding-right: 0;
  }

  .hero-offer strong {
    font-size: 30px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    margin-inline: auto;
  }

  .hero-visual {
    width: calc(100% - 14px);
  }

  .hero-stamp {
    top: -42px;
    left: -7px;
    width: 90px;
    height: 90px;
  }

  .hero-note {
    right: -8px;
    font-size: 10px;
  }

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

  .creative-card {
    grid-column: 1;
    grid-row: auto;
  }

  .creative-card figcaption {
    display: grid;
  }

  .creative-card figcaption span:last-child {
    text-align: left;
  }

  .faq-list summary {
    grid-template-columns: 1fr 32px;
    gap: 15px;
  }

  .faq-list summary span {
    width: 32px;
    height: 32px;
  }

  .faq-list details > p {
    margin-right: 0;
  }

  .contact::before {
    display: none;
  }

  .lead-form {
    width: calc(100% - 9px);
    box-shadow: 9px 9px 0 var(--acid);
  }

  .form-heading {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: 1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
