:root {
  --ink: #081943;
  --muted: #3f4d6f;
  --pink: #ff2f7c;
  --pink-dark: #ec2070;
  --green: #16b979;
  --gold: #ffc400;
  --blue-panel: #155676;
  --warm: #fff9f2;
  --panel: #f6f7f9;
  --line: #eef0f4;
  --white: #ffffff;
  --shadow: 0 12px 26px rgba(8, 25, 67, 0.12);
  --font: "Nunito", "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.page-shell {
  width: 100%;
  max-width: 853px;
  margin: 0 auto;
  background: var(--white);
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 28px;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: min(100%, 853px);
  margin: 0 auto;
  padding: 0 36px;
  pointer-events: none;
}

.site-header a,
.site-header .benefit {
  pointer-events: auto;
}

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

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 47, 124, 0.22);
  border-radius: 50%;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.social-links svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.2;
}

.social-links a:hover {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-1px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 900;
}

.brand-mark {
  position: relative;
  width: 24px;
  height: 24px;
  border: 3px solid var(--pink);
  border-radius: 4px;
}

.brand-mark span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--pink);
  border-radius: 50%;
}

.brand-mark span:first-child {
  top: -4px;
  right: -4px;
}

.brand-mark span:last-child {
  right: -4px;
  bottom: -4px;
}

.brand-text {
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.brand-text span {
  color: var(--pink);
}

.top-benefits {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding-top: 2px;
}

.benefit {
  display: grid;
  grid-template-columns: 20px auto;
  align-items: start;
  gap: 7px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.12;
}

.benefit svg {
  width: 20px;
  height: 20px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 342px 511px;
  height: 520px;
  background:
    linear-gradient(90deg, #fffdf9 0 342px, #eadbc9 342px 100%);
}

.sale-ribbon {
  position: absolute;
  z-index: 3;
  left: 45px;
  top: 73px;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 12px;
  color: var(--white);
  background: var(--pink);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(255, 47, 124, 0.18);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 104px 0 0 45px;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
}

.hero h1 span {
  display: block;
}

.hero-subtitle {
  width: 283px;
  margin: 16px 0 0;
  color: #1b2d55;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  list-style: none;
}

.hero-checks {
  margin-top: 20px;
}

.check-list li {
  position: relative;
  min-height: 18px;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--pink);
  border-radius: 50%;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 5px;
  height: 3px;
  border-bottom: 2px solid var(--pink);
  border-left: 2px solid var(--pink);
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border-radius: 7px;
  box-shadow: 0 13px 24px rgba(255, 47, 124, 0.27);
  font-size: 14px;
  font-weight: 900;
}

.button svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}

.hero-button {
  width: 248px;
  margin-top: 20px;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
}

.secure-note svg {
  width: 12px;
  height: 12px;
  stroke-width: 2;
}

.hero-scene {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 511px;
  height: 450px;
  object-fit: cover;
}

.fathers-day-timer {
  position: absolute;
  z-index: 4;
  right: 26px;
  bottom: 16px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 8px;
  width: 174px;
  min-height: 104px;
  padding: 10px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 242, 0.88)),
    radial-gradient(circle at 0 0, rgba(255, 47, 124, 0.17), transparent 52%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 11px;
  box-shadow: 0 17px 34px rgba(8, 25, 67, 0.18);
  overflow: hidden;
}

.fathers-day-timer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.55) 43%, transparent 54%);
  transform: translateX(-100%);
  animation: timer-sheen 3.2s ease-in-out infinite;
  pointer-events: none;
}

.timer-copy,
.timer-units {
  position: relative;
  z-index: 1;
}

.timer-copy span {
  display: block;
  color: var(--pink);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.timer-copy strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.timer-units {
  display: grid;
  grid-template-columns: repeat(4, 34px);
  justify-content: center;
  gap: 4px;
}

.timer-unit {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 5px 0 4px;
  background: var(--white);
  border: 1px solid rgba(255, 47, 124, 0.18);
  border-radius: 7px;
  box-shadow: 0 9px 17px rgba(8, 25, 67, 0.08);
  animation: timer-float 2.8s ease-in-out infinite;
}

.timer-unit:nth-child(2) {
  animation-delay: 120ms;
}

.timer-unit:nth-child(3) {
  animation-delay: 240ms;
}

.timer-unit:nth-child(4) {
  animation-delay: 360ms;
}

.timer-unit strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.timer-unit small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 6px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.timer-unit.tick strong {
  animation: timer-pop 280ms ease;
}

@keyframes timer-sheen {
  0%,
  42% {
    transform: translateX(-105%);
  }

  100% {
    transform: translateX(105%);
  }
}

@keyframes timer-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes timer-pop {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

.category-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 11px 34px;
  background: var(--white);
  border-bottom: 1px solid #f0f1f5;
  scrollbar-width: none;
}

.category-chips::-webkit-scrollbar {
  display: none;
}

.category-chips a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff7ef;
  border: 1px solid #fee1eb;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.category-chips a:hover,
.see-all-sizes:hover,
.support-copy a:hover,
.payment-line a:hover {
  color: var(--pink);
}

.pricing {
  height: 350px;
  padding-top: 24px;
  text-align: center;
  background: var(--white);
}

.pricing h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.15;
}

.pricing h2 span {
  color: var(--pink);
}

.pricing-kicker {
  margin: 5px 0 28px;
  color: #1c2c56;
  font-size: 15px;
  font-weight: 800;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 219px);
  justify-content: center;
  gap: 17px;
  margin-bottom: 19px;
}

.price-card {
  position: relative;
  height: 154px;
  padding-top: 17px;
  background: #fffaf3;
  border: 1px solid transparent;
  border-radius: 7px;
}

.price-card.featured {
  background: #fffaf7;
  border-color: var(--pink);
}

.price-card > p {
  position: absolute;
  top: -12px;
  left: 50%;
  min-width: 99px;
  margin: 0;
  padding: 3px 11px;
  color: var(--white);
  background: var(--pink);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.price-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 900;
}

.price-card del {
  display: block;
  margin-bottom: 4px;
  color: #6d7281;
  font-size: 13px;
  font-weight: 900;
}

.price-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 29px;
  font-weight: 900;
  line-height: 0.9;
}

.price-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  color: var(--white);
  background: var(--pink);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 900;
}

.pricing small {
  display: block;
  color: #243457;
  font-size: 9px;
  font-weight: 700;
}

.see-all-sizes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 14px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.see-all-sizes svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.6;
}

.steps {
  height: 171px;
  padding-top: 25px;
  background: #f6f7f9;
  border-radius: 12px 12px 0 0;
  text-align: center;
}

.steps h2,
.moments h2,
.social-quality h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.step-grid {
  display: grid;
  grid-template-columns: 186px 28px 186px 28px 198px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.step-grid article {
  display: grid;
  grid-template-columns: 58px auto;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--pink);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 13px 30px rgba(8, 25, 67, 0.04);
}

.step-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.step-grid h3 {
  margin: 0 0 5px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.step-grid p {
  margin: 0;
  color: #1e3158;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.45;
}

.step-arrow {
  position: relative;
  width: 24px;
  height: 1px;
  background: #c8cbd2;
}

.step-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #c8cbd2;
  border-right: 1px solid #c8cbd2;
  transform: rotate(45deg);
}

.moments {
  position: relative;
  height: 270px;
  padding-top: 20px;
  text-align: center;
  background: var(--white);
}

.moment-viewport {
  width: 752px;
  margin: 14px auto 0;
  overflow: hidden;
}

.moment-track {
  display: flex;
  gap: 15px;
  transition: transform 320ms ease;
  will-change: transform;
}

.moment-track article {
  flex: 0 0 138px;
  min-width: 0;
}

.moment-track img {
  width: 100%;
  height: 144px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 9px 18px rgba(8, 25, 67, 0.1);
}

.moment-track h3 {
  margin: 9px 0 0;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
}

.slider-arrow {
  position: absolute;
  z-index: 2;
  top: 120px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(8, 25, 67, 0.16);
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.slider-arrow:hover {
  color: var(--pink);
  transform: translateY(-1px);
}

.slider-arrow:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.slider-arrow svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.slider-prev {
  left: 28px;
}

.slider-next {
  right: 31px;
}

.social-quality {
  display: grid;
  grid-template-columns: 363px 490px;
  height: 259px;
  background: linear-gradient(90deg, #ffffff 0 363px, #fbfbfc 363px 100%);
}

.review-panel {
  padding: 20px 0 0 41px;
}

.review-panel h2 {
  font-size: 21px;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
}

.review-score strong {
  font-size: 14px;
  font-weight: 900;
}

.rating-stars {
  color: var(--gold);
  font-size: 17px;
  line-height: 1;
  letter-spacing: 1px;
}

.review-link {
  color: #1593e7;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.review-count {
  margin: 6px 0 19px;
  color: #16274f;
  font-size: 10px;
  font-weight: 800;
}

.testimonial {
  display: grid;
  grid-template-columns: 94px 1fr;
  align-items: start;
  gap: 18px;
}

.testimonial img {
  width: 94px;
  height: 97px;
  border-radius: 6px;
}

.testimonial blockquote {
  margin: 2px 0 0;
}

.pink-stars {
  color: var(--pink);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 2px;
}

.testimonial p {
  width: 185px;
  margin: 9px 0 8px;
  color: #17284f;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
}

.testimonial cite {
  display: block;
  color: var(--ink);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.quality-panel {
  position: relative;
}

.quality-copy {
  position: absolute;
  left: 34px;
  top: 55px;
  z-index: 2;
}

.quality-copy h2 {
  font-size: 19px;
}

.quality-copy .check-list {
  gap: 9px;
  margin-top: 22px;
  font-size: 10px;
  font-weight: 700;
}

.quality-art {
  position: absolute;
  right: 0;
  top: 10px;
  width: 243px;
  height: 240px;
  object-fit: contain;
}

.customization {
  padding: 34px 40px 38px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #fff9f3);
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.customization h2,
.why-easy h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.18;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 25px;
}

.custom-grid article {
  padding: 22px 18px;
  background: var(--white);
  border: 1px solid #f2edf0;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 25, 67, 0.06);
}

.custom-grid svg {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  color: var(--pink);
}

.custom-grid h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 900;
}

.custom-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.custom-button {
  min-width: 230px;
  margin-top: 24px;
  padding: 0 24px;
}

.why-easy {
  padding: 28px 40px 38px;
  color: var(--white);
  background: var(--blue-panel);
  text-align: center;
}

.why-easy h2 {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 29px;
}

.why-grid article {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.why-grid svg {
  width: 52px;
  height: 52px;
  color: var(--white);
  stroke-width: 1.7;
}

.why-grid h3 {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.support-confidence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 18px 40px;
  background: #eef0f4;
}

.support-copy p {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.support-copy a,
.payment-line a {
  color: #1593e7;
  font-size: 11px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.payment-line {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: #17284f;
  font-size: 12px;
  font-weight: 700;
}

.paypal-mark {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #003087;
  font-size: 14px;
  font-style: italic;
  font-weight: 900;
}

.paypal-mark::before {
  content: "P";
  display: grid;
  place-items: center;
  width: 14px;
  height: 16px;
  color: #009cde;
  font-size: 16px;
  font-style: italic;
  line-height: 1;
}

.final-cta {
  padding: 18px 14px 8px;
  background: var(--white);
}

.final-cta-card {
  display: grid;
  grid-template-columns: 1fr 285px;
  align-items: center;
  gap: 24px;
  min-height: 202px;
  width: 100%;
  max-width: 825px;
  margin: 0 auto;
  padding: 28px 36px;
  background: linear-gradient(90deg, #fffaf4 0%, #f4ebe0 58%, #d7c7b6 100%);
  border-radius: 8px;
  overflow: hidden;
}

.final-cta-copy {
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.15;
}

.final-cta p {
  max-width: 390px;
  margin: 11px auto 22px;
  color: #1b2d55;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.final-cta-button {
  width: 224px;
  gap: 22px;
}

.final-cta-image {
  width: 267px;
  height: 175px;
  object-fit: contain;
  object-position: center;
  justify-self: end;
  filter: drop-shadow(0 16px 20px rgba(8, 25, 67, 0.13));
}

.site-footer {
  min-height: 104px;
  background: var(--warm);
  text-align: center;
}

.footer-benefits {
  display: grid;
  grid-template-columns: 205px 205px 230px;
  justify-content: center;
  gap: 28px;
  padding-top: 14px;
}

.footer-benefits div {
  display: grid;
  grid-template-columns: 22px auto;
  gap: 9px;
  text-align: left;
}

.footer-benefits svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--ink);
}

.footer-benefits p {
  margin: 0;
  color: var(--ink);
  font-size: 9px;
  line-height: 1.15;
}

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

.footer-benefits strong {
  font-weight: 900;
}

.footer-benefits span {
  font-weight: 700;
}

.site-footer small {
  display: block;
  margin-top: 12px;
  color: #18294f;
  font-size: 9px;
  font-weight: 700;
}

.footer-social {
  justify-content: center;
  margin-top: 10px;
}

.footer-social a {
  color: var(--white);
  border-color: transparent;
  background: var(--ink);
}

.footer-social a:nth-child(1) {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 72%, #515bd4);
}

.footer-social a:nth-child(2) {
  background: #1877f2;
}

.footer-social a:nth-child(3) {
  background: #010101;
}

.footer-social a:nth-child(4) {
  background: #000000;
}

.footer-social a:nth-child(5) {
  background: #e60023;
}

.footer-social a:nth-child(6) {
  background: #1da1f2;
}

.footer-social a:hover {
  color: var(--white);
  filter: brightness(1.08);
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 10px;
}

.footer-legal-links button,
.text-button {
  padding: 0;
  color: #1593e7;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-layer {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(8, 25, 67, 0.52);
}

.modal-layer[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(100%, 520px);
  max-height: min(88vh, 680px);
  padding: 28px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 25px 70px rgba(8, 25, 67, 0.28);
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--ink);
  background: #fff4f8;
  border: 1px solid #ffd3e2;
  border-radius: 50%;
  cursor: pointer;
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

.modal-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.18;
}

.modal-intro,
.legal-content p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.feedback-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 18px;
}

.feedback-options label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 48px;
  padding: 11px;
  color: var(--ink);
  background: #fffaf4;
  border: 1px solid #f3e2ea;
  border-radius: 8px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
}

.feedback-options input {
  accent-color: var(--pink);
  margin-top: 1px;
}

.feedback-card textarea {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  color: var(--ink);
  border: 1px solid #eadde4;
  border-radius: 8px;
  resize: vertical;
  font: 700 12px/1.35 var(--font);
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.feedback-submit {
  width: 174px;
  height: 42px;
  border: 0;
  cursor: pointer;
}

.legal-card {
  width: min(100%, 580px);
}

.legal-content h2 {
  padding-right: 42px;
}

@media (min-width: 854px) {
  .page-shell {
    box-shadow: 0 0 0 1px rgba(8, 25, 67, 0.03);
  }
}

@media (min-width: 1024px) {
  .page-shell {
    max-width: 1080px;
  }

  .site-header {
    width: min(100%, 1080px);
    padding-inline: 48px;
  }

  .hero {
    grid-template-columns: 41% 59%;
    height: 610px;
    background: linear-gradient(90deg, #fffdf9 0 41%, #eadbc9 41% 100%);
  }

  .sale-ribbon {
    left: 58px;
    top: 86px;
  }

  .hero-copy {
    padding: 126px 0 0 58px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero-subtitle {
    width: 330px;
    font-size: 15px;
  }

  .hero-button {
    width: 286px;
  }

  .hero-scene {
    width: 647px;
    height: 540px;
  }

  .fathers-day-timer {
    right: 46px;
    bottom: 26px;
  }

  .price-grid {
    grid-template-columns: repeat(3, 260px);
  }

  .moment-viewport {
    width: 900px;
  }

  .moment-track article {
    flex-basis: 168px;
  }

  .social-quality {
    grid-template-columns: 44% 56%;
  }

  .review-panel {
    padding-left: 58px;
  }

  .quality-art {
    right: 28px;
  }

  .final-cta-card {
    max-width: 1010px;
  }
}

@media (max-width: 852px) {
  .page-shell,
  .site-header {
    max-width: none;
  }

  .page-shell {
    transform-origin: top center;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: var(--warm);
  }

  .top-benefits {
    display: none;
  }

  .hero,
  .pricing,
  .steps,
  .moments,
  .social-quality,
  .customization,
  .why-easy,
  .support-confidence,
  .final-cta,
  .site-footer {
    height: auto;
  }

  .hero {
    display: block;
    background: linear-gradient(180deg, #fffdf9, #f3e3d2);
  }

  .sale-ribbon {
    position: static;
    margin: 22px 28px 0;
  }

  .hero-copy {
    padding: 24px 28px 0;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .hero-subtitle {
    width: auto;
    max-width: 330px;
    font-size: 15px;
  }

  .check-list {
    font-size: 14px;
  }

  .hero-button {
    width: min(100%, 330px);
  }

  .secure-note {
    font-size: 12px;
  }

  .hero-scene {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 38px;
  }

  .fathers-day-timer {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: calc(100% - 56px);
    max-width: 330px;
    margin: -22px auto 24px;
    padding: 14px;
  }

  .timer-copy {
    text-align: center;
  }

  .timer-copy span {
    font-size: 10px;
  }

  .timer-copy strong {
    font-size: 22px;
  }

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

  .timer-unit {
    min-height: 54px;
  }

  .timer-unit strong {
    font-size: 19px;
  }

  .timer-unit small {
    font-size: 8px;
  }

  .category-chips {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 20px;
  }

  .pricing {
    padding: 26px 24px 34px;
  }

  .pricing h2 {
    font-size: 24px;
  }

  .pricing h2 span {
    display: inline-block;
  }

  .price-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 330px;
    margin-inline: auto;
  }

  .price-card {
    height: auto;
    padding: 22px 18px;
  }

  .steps {
    padding: 28px 24px 34px;
    border-radius: 12px;
  }

  .steps h2 {
    font-size: 20px;
  }

  .step-grid {
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .step-arrow {
    display: none;
  }

  .moments {
    padding: 28px 24px 38px;
  }

  .moment-viewport {
    width: min(100%, 330px);
    margin-top: 22px;
  }

  .moment-track {
    gap: 14px;
  }

  .moment-track article {
    flex-basis: 158px;
  }

  .slider-arrow {
    top: 86px;
    width: 34px;
    height: 34px;
    border: 1px solid #eef0f4;
  }

  .slider-prev {
    left: 18px;
  }

  .slider-next {
    right: 18px;
  }

  .social-quality {
    grid-template-columns: 1fr;
  }

  .review-panel,
  .quality-panel {
    padding: 30px 28px;
  }

  .review-score {
    flex-wrap: wrap;
  }

  .review-panel h2,
  .quality-copy h2 {
    font-size: 24px;
  }

  .quality-copy,
  .quality-art {
    position: static;
  }

  .quality-art {
    width: min(100%, 300px);
    height: auto;
    margin: 24px auto 0;
  }

  .customization,
  .why-easy,
  .support-confidence {
    padding-inline: 24px;
  }

  .custom-grid,
  .why-grid,
  .support-confidence {
    grid-template-columns: 1fr;
  }

  .why-grid {
    gap: 24px;
  }

  .payment-line {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .final-cta {
    padding: 26px 10px;
  }

  .final-cta-card {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 28px 20px;
    text-align: center;
  }

  .final-cta h2 {
    font-size: 24px;
  }

  .final-cta-image {
    width: min(100%, 310px);
    height: auto;
    justify-self: center;
  }

  .site-footer {
    padding: 22px 24px;
  }

  .footer-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 330px;
    margin: 0 auto;
    padding-top: 0;
  }

  .modal-card {
    padding: 24px 18px;
  }

  .feedback-options {
    grid-template-columns: 1fr;
  }

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

  .feedback-submit {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .brand-text {
    font-size: 21px;
  }

  .hero-copy {
    padding-inline: 28px;
  }

  .button {
    gap: 16px;
  }

  .moment-viewport {
    width: 292px;
  }

  .moment-track article {
    flex-basis: 292px;
  }

  .moment-track img {
    height: 210px;
  }

  .testimonial {
    grid-template-columns: 84px 1fr;
    gap: 14px;
  }

  .testimonial img {
    width: 84px;
    height: 87px;
  }

  .testimonial p {
    width: auto;
  }
}
