:root {
  color-scheme: light;
  --yellow: #ffdc38;
  --red: #ff3b30;
  --ink: #151515;
  --muted: #686868;
  --line: #dedede;
  --paper: #f7f7f4;
  --green: #195d3a;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
}

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

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.logo-domain {
  color: var(--red);
}

.logo-note {
  display: inline;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.header-link:hover {
  color: var(--red);
}

.hero {
  position: relative;
  display: grid;
  min-height: 650px;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  border-radius: 34px;
  background: var(--yellow);
}

.hero-copy {
  z-index: 2;
  padding: clamp(46px, 7vw, 86px);
  padding-right: 20px;
}

.eyebrow {
  margin: 0 0 22px;
  color: #5f5a3c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero .eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(62px, 7.8vw, 112px);
  letter-spacing: -0.07em;
  line-height: 0.87;
}

.hero-lead {
  max-width: 530px;
  margin: 34px 0 28px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.coupon {
  display: flex;
  width: min(510px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 14px 14px 24px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 7px 7px 0 var(--ink);
}

.coupon-info span {
  display: block;
  margin-bottom: 4px;
  color: #605a3a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.coupon-info strong {
  font-family: "Courier New", monospace;
  font-size: clamp(22px, 3vw, 29px);
  letter-spacing: 0.02em;
}

.copy-button {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 13px;
  color: white;
  background: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s, background 0.2s;
}

.copy-button:hover {
  background: #303030;
  transform: translateY(-2px);
}

.copy-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.primary-button {
  display: inline-flex;
  min-height: 57px;
  align-items: center;
  gap: 30px;
  padding: 0 24px;
  border-radius: 14px;
  color: white;
  background: var(--red);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.hero-actions p {
  max-width: 165px;
  margin: 0;
  color: #67603d;
  font-size: 12px;
  line-height: 1.4;
}

.hero-art {
  position: relative;
  min-height: 100%;
}

.sun {
  position: absolute;
  top: 80px;
  right: 70px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
}

.flower {
  position: absolute;
  z-index: 2;
  width: 170px;
  height: 170px;
}

.flower i {
  position: absolute;
  top: 25px;
  left: 58px;
  width: 54px;
  height: 120px;
  border: 3px solid var(--ink);
  border-radius: 60% 60% 45% 45%;
  background: #fff;
  transform-origin: 50% 60px;
}

.flower i:nth-child(2) {
  transform: rotate(90deg);
}

.flower i:nth-child(3) {
  transform: rotate(180deg);
}

.flower i:nth-child(4) {
  transform: rotate(270deg);
}

.flower b {
  position: absolute;
  top: 64px;
  left: 64px;
  width: 42px;
  height: 42px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
}

.flower-one {
  top: 130px;
  right: 180px;
  transform: rotate(-9deg) scale(1.1);
}

.flower-two {
  right: 18px;
  bottom: 85px;
  transform: rotate(14deg) scale(0.82);
}

.flower-three {
  right: 255px;
  bottom: -10px;
  transform: rotate(-20deg) scale(0.6);
}

.stem {
  position: absolute;
  z-index: 1;
  width: 3px;
  border-radius: 10px;
  background: var(--ink);
  transform-origin: bottom;
}

.stem::after {
  position: absolute;
  width: 58px;
  height: 26px;
  border: 3px solid var(--ink);
  border-radius: 100% 0 100% 0;
  background: #41a66c;
  content: "";
}

.stem-one {
  right: 261px;
  bottom: -10px;
  height: 360px;
  transform: rotate(-8deg);
}

.stem-one::after {
  top: 150px;
}

.stem-two {
  right: 101px;
  bottom: -5px;
  height: 210px;
  transform: rotate(12deg);
}

.stem-two::after {
  top: 100px;
  left: -57px;
  transform: scaleX(-1);
}

.stem-three {
  right: 315px;
  bottom: -20px;
  height: 175px;
  transform: rotate(-18deg);
}

.discount {
  position: absolute;
  z-index: 4;
  top: 58%;
  right: 30px;
  padding: 12px 17px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: white;
  background: var(--red);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 28px;
  font-weight: 900;
  transform: rotate(9deg);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 22px 0 110px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.trust-strip div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border: 0;
}

.trust-strip strong {
  font-size: 25px;
}

.trust-strip span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.content-section {
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  margin-bottom: 64px;
}

.section-heading h2,
.details h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 72px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

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

.steps li {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps > li > span {
  color: var(--red);
  font-family: "Courier New", monospace;
  font-size: 14px;
  font-weight: 800;
}

.steps h3 {
  margin: 0 0 9px;
  font-size: clamp(23px, 3vw, 33px);
  letter-spacing: -0.035em;
}

.steps p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.details {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 22px;
}

.details-card {
  padding: clamp(30px, 5vw, 60px);
  border-radius: 28px;
  background: white;
}

.details-card ul {
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
}

.details-card li {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.details-card li span {
  color: var(--muted);
}

.details-card li strong {
  text-align: right;
}

.note-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 34px;
  border-radius: 28px;
  color: white;
  background: var(--green);
}

.note-icon {
  display: grid;
  flex: 0 0 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

.note-card h3 {
  margin: 3px 0 12px;
  font-size: 22px;
}

.note-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.65;
}

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

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

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

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 26px 0;
  cursor: pointer;
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 800;
  list-style: none;
}

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

summary span {
  font-size: 30px;
  font-weight: 400;
  transition: transform 0.2s;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  max-width: 720px;
  margin: -4px 0 28px;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 28px;
  padding: clamp(38px, 7vw, 80px);
  border-radius: 32px;
  background: var(--yellow);
}

.copy-button-dark {
  min-width: 270px;
  flex-direction: column;
  gap: 3px;
  padding: 18px 28px;
}

.copy-button-dark span {
  font-family: "Courier New", monospace;
  font-size: 22px;
}

.copy-button-dark b {
  color: #aaa;
  font-size: 11px;
  text-transform: uppercase;
}

footer {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  padding: 35px 0 55px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

footer p {
  margin: 0;
}

footer p:last-child {
  text-align: right;
}

.footer-brand {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.footer-brand span {
  display: inline;
  color: var(--red);
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.footer-brand small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 20;
  right: 22px;
  bottom: 22px;
  padding: 15px 21px;
  border-radius: 12px;
  color: white;
  background: var(--green);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: 0.25s;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: clamp(32px, 7vw, 65px);
  }

  .hero-art {
    min-height: 380px;
  }

  .sun {
    top: 20px;
  }

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

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .steps li {
    grid-template-columns: 0.35fr 1.65fr;
  }

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

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

  footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 70px;
  }

  .header-link {
    display: none;
  }

  .logo {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .hero {
    min-height: auto;
    border-radius: 22px;
  }

  .hero-copy {
    padding: 38px 22px 20px;
  }

  h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .coupon {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .copy-button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions p {
    max-width: none;
  }

  .hero-art {
    min-height: 330px;
    transform: scale(0.9);
    transform-origin: bottom right;
  }

  .flower-one {
    right: 110px;
  }

  .stem-one {
    right: 190px;
  }

  .flower-three {
    display: none;
  }

  .trust-strip {
    margin-bottom: 70px;
  }

  .trust-strip div {
    min-height: 94px;
    padding: 18px;
  }

  .trust-strip strong {
    font-size: 20px;
  }

  .content-section {
    padding: 65px 0;
  }

  .section-heading,
  .steps li {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 15px;
    margin-bottom: 40px;
  }

  .steps li {
    gap: 18px;
  }

  .details-card li {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .details-card li strong {
    text-align: left;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-button-dark {
    min-width: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
