:root {
  --orange: #ff6b00;
  --orange-dark: #d95700;
  --coral: #ff6852;
  --yellow: #ffe333;
  --purple: #7145f5;
  --purple-dark: #4b24c8;
  --ink: #17141d;
  --muted: #6b6672;
  --white: #ffffff;
  --soft: #fff9f3;
  --lavender: #f3efff;
  --line: rgba(23, 20, 29, 0.14);
  --display: "Fredoka", "Avenir Next Rounded", "Arial Rounded MT Bold", sans-serif;
  --body: "DM Sans", "Avenir Next", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --radius-small: 16px;
  --radius-medium: 28px;
  --radius-large: 44px;
  --shadow: 0 30px 80px rgba(48, 28, 19, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 86px;
}

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

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(23, 20, 29, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 35px rgba(23, 20, 29, 0.06);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--shell);
  height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
}

.brand {
  width: 76px;
  height: 76px;
  display: block;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding-block: 14px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 8px;
  height: 2px;
  background: var(--orange);
  transition: right 200ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.button {
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(255, 107, 0, 0.24);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 107, 0, 0.3);
}

.button:active {
  transform: scale(0.98);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

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

.button-small {
  justify-self: end;
  min-height: 44px;
  padding-inline: 19px;
  font-size: 14px;
}

.button-large {
  min-height: 58px;
  padding-inline: 28px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 108px 0 54px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fffaf7 72%, #fff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 55px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 25px;
}

.hero-copy h1 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(58px, 5.25vw, 78px);
  line-height: 1.01;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-copy h1 .hero-title-accent {
  position: relative;
  z-index: 0;
  color: var(--orange);
  white-space: nowrap;
}

.hero-copy h1 .hero-title-accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 3px;
  right: -2px;
  bottom: 2px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
  transform: rotate(-1.8deg);
}

.hero-copy > p {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-visual {
  --hero-ball-shift-x: 28px;
  --hero-ball-shift-y: 13px;
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 555px;
  height: 555px;
  z-index: 0;
  border: 13px solid rgba(255, 218, 67, 0.78);
  border-radius: 47% 53% 45% 55%;
  transform: rotate(-9deg);
  transform-origin: 50% 50%;
  animation: hero-ring-turn 24s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  z-index: 2;
  right: -18px;
  top: 74px;
  border: 5px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 29%, rgba(255, 255, 255, 0.92) 0 8%, transparent 9%),
    conic-gradient(from 205deg, #c8b7ff 0 34%, #a98fff 34% 53%, #ddd5ff 53% 100%);
  box-shadow: 0 16px 28px rgba(92, 59, 180, 0.2);
  transform: translate3d(-8px, 0, 0) rotate(-12deg);
  transform-origin: 50% 50%;
  animation: hero-ball-roll 13s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
  pointer-events: none;
}

.hero-story-poster {
  position: relative;
  z-index: 1;
  width: min(540px, 96%);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.96);
  border-radius: 48px;
  background: var(--coral);
  box-shadow: 0 30px 64px rgba(79, 39, 21, 0.2);
  transform: rotate(2deg);
  transition: transform 480ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 480ms ease;
}

.hero-story-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(19, 16, 25, 0.08);
  pointer-events: none;
}

.hero-story-poster img,
.hero-story-poster video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-story-poster img {
  pointer-events: none;
  user-select: none;
}

.hero-story-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background: var(--coral);
  pointer-events: none;
  transition: opacity 220ms ease;
}

.hero-story-poster.is-playing .hero-story-video {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .hero-story-poster:hover {
    transform: rotate(0.75deg) scale(1.012);
    box-shadow: 0 36px 74px rgba(79, 39, 21, 0.24);
  }
}

.poster {
  margin: 0;
  overflow: hidden;
  background: var(--coral);
  box-shadow: var(--shadow);
}

.poster picture,
.poster img {
  width: 100%;
  height: 100%;
}

.poster img {
  object-fit: cover;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-orange {
  width: 480px;
  height: 480px;
  left: -320px;
  top: 260px;
  background: #ffbd92;
}

.hero-orb-purple {
  width: 300px;
  height: 300px;
  right: -160px;
  bottom: 58px;
  background: #bca8ff;
}

@keyframes hero-ring-turn {
  from {
    transform: rotate(-9deg) scale(1);
  }

  to {
    transform: rotate(17deg) scale(1.015);
  }
}

@keyframes hero-ball-roll {
  from {
    transform: translate3d(-8px, 0, 0) rotate(-12deg);
  }

  to {
    transform: translate3d(var(--hero-ball-shift-x), var(--hero-ball-shift-y), 0) rotate(58deg);
  }
}

.section-index {
  margin-bottom: 22px;
  color: #d6caff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-index-dark {
  color: var(--orange);
}

.section-index-light {
  color: var(--yellow);
}

.emotion-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, #fff4ed 14%, #fff4ed 86%, var(--white) 100%);
  color: var(--ink);
}

.emotion-section::before {
  content: "";
  position: absolute;
  width: 610px;
  height: 610px;
  left: -365px;
  top: 68px;
  border-radius: 50%;
  background: #ffe78b;
  opacity: 0.52;
}

.emotion-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -210px;
  bottom: 40px;
  border-radius: 50%;
  background: #d9ccff;
  opacity: 0.62;
}

.emotion-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.8fr);
  align-items: center;
  gap: 70px;
}

.emotion-intro {
  position: relative;
  max-width: 720px;
}

.emotion-intro .section-index {
  margin-bottom: 28px;
}

.emotion-intro h2,
.feature-copy h2,
.faq-heading h2,
.download-copy h2 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.04;
}

.emotion-intro h2 {
  margin-bottom: 26px;
}

.emotion-intro > h2 + p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(20px, 1.45vw, 23px);
  line-height: 1.65;
}

.emotion-result-visual {
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.emotion-annotation {
  position: absolute;
  z-index: 3;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 2px solid currentColor;
  border-radius: 18px;
  background: var(--white);
  font-size: 14px;
  letter-spacing: 0.065em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(23, 20, 29, 0.11);
  pointer-events: none;
}

.emotion-annotation::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: inherit;
}

.emotion-annotation > span {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 16%, transparent);
}

.emotion-annotation strong {
  font-weight: 800;
}

.emotion-annotation-analysis {
  left: auto;
  right: -125px;
  top: 142px;
  color: var(--purple-dark);
  background: #f1edff;
  border-radius: 18px 18px 18px 7px;
  transform: rotate(-1deg);
}

.emotion-annotation-analysis::after {
  left: -8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-radius: 0 0 0 4px;
  transform: translateY(-50%) rotate(45deg);
}

.emotion-annotation-observation {
  left: -105px;
  bottom: 98px;
  color: #a83b00;
  background: #fff0e5;
  border-radius: 18px 18px 7px 18px;
  transform: rotate(1deg);
}

.emotion-annotation-observation::after {
  right: -8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  border-radius: 0 4px 0 0;
  transform: translateY(-50%) rotate(45deg);
}

.emotion-result-visual::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -72px;
  top: 120px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.9;
}

.emotion-result-poster {
  position: relative;
  z-index: 1;
  width: min(470px, 100%);
  aspect-ratio: 5 / 8;
  border: 7px solid var(--white);
  border-radius: 38px;
  transform: rotate(1.5deg);
}

.emotion-result-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.album-section,
.notes-section,
.magic-section,
.faq-section {
  padding: 140px 0;
}

.feature-grid {
  display: grid;
  align-items: center;
  gap: 105px;
}

.album-grid {
  grid-template-columns: 0.94fr 1.06fr;
}

.notes-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.feature-visual {
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.feature-visual::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  left: -55px;
  top: 115px;
  border-radius: 50%;
  background: var(--lavender);
}

.poster-feature {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  aspect-ratio: 2048 / 2732;
  border: 7px solid var(--white);
  border-radius: 38px;
  transform: rotate(-1.5deg);
}

.feature-copy {
  min-width: 0;
}

.feature-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(44px, 4.9vw, 72px);
}

.album-grid .feature-copy h2 {
  font-size: clamp(54px, 4.4vw, 66px);
  line-height: 1;
}

.album-grid .feature-copy h2 span {
  display: block;
}

.album-grid .feature-copy h2 span + span {
  margin-top: 0.04em;
}

.feature-lead {
  max-width: 670px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.album-grid .feature-lead {
  max-width: 630px;
  margin-bottom: 36px;
  font-size: 20px;
  line-height: 1.6;
}

.album-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.album-benefit {
  min-width: 0;
  min-height: 164px;
  padding: 20px 16px 18px;
  border: 1px solid rgba(19, 16, 25, 0.07);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 28px rgba(67, 42, 31, 0.06);
}

.album-benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
}

.album-benefit-pets .album-benefit-icon {
  color: #e5521d;
  background: #ffe0cc;
}

.album-benefit-share .album-benefit-icon {
  color: var(--purple-dark);
  background: #e4dcff;
}

.album-benefit-emotion .album-benefit-icon {
  color: #7c5d00;
  background: #ffe884;
}

.album-benefit-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.album-benefit strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
}

.album-benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.smart-upload {
  margin-top: 110px;
  min-height: 340px;
  padding: 52px 58px;
  border-radius: var(--radius-large);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 52px;
  background: var(--lavender);
}

.smart-copy {
  max-width: 650px;
}

.smart-number {
  margin-bottom: 20px;
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.smart-copy h3 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(37px, 4vw, 58px);
  line-height: 1.05;
}

.smart-lead {
  max-width: 610px;
  margin-bottom: 0;
  color: #5f5676;
  font-size: 18px;
  line-height: 1.7;
}

.smart-visual {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.smart-screen-flow {
  position: relative;
  width: min(410px, 100%);
  height: 286px;
}

.smart-screen-card {
  position: absolute;
  top: 0;
  width: 47%;
  height: 272px;
  margin: 0;
  padding: 7px 7px 0;
  border: 1px solid rgba(75, 36, 200, 0.1);
  border-radius: 25px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 20px 42px rgba(75, 36, 200, 0.16);
}

.smart-screen-card-setup {
  left: 0;
  transform: rotate(-3deg);
}

.smart-screen-card-scan {
  right: 0;
  top: 10px;
  transform: rotate(3deg);
}

.smart-screen-crop {
  height: 220px;
  border-radius: 19px 19px 13px 13px;
  overflow: hidden;
  background: #f8f5ff;
}

.smart-screen-crop img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.smart-screen-card-setup img {
  object-position: center 38%;
}

.smart-screen-card-scan img {
  object-position: center 54%;
}

.smart-screen-card figcaption {
  min-height: 44px;
  padding: 7px 8px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.smart-screen-card figcaption span {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
}

.smart-screen-card figcaption strong {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
}

.smart-flow-arrow {
  position: absolute;
  left: 50%;
  top: 112px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 5px solid var(--lavender);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.25);
}

.smart-flow-arrow svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.smart-private-chip {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid rgba(75, 36, 200, 0.14);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(75, 36, 200, 0.08);
}

.smart-private-chip svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notes-section {
  overflow: hidden;
  background: var(--soft);
}

.notes-copy h2 {
  font-size: clamp(43px, 4.7vw, 68px);
}

.notes-quote {
  max-width: 590px;
  margin: 44px 0 34px;
  padding-left: 25px;
  border-left: 3px solid var(--orange);
}

.notes-quote p {
  margin: 0;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.notes-quote p:last-child {
  color: var(--orange);
}

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

.feature-list li {
  position: relative;
  min-height: 56px;
  padding: 15px 0 15px 34px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  font-weight: 600;
}

.feature-list li:first-child {
  border-top: 1px solid var(--line);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.12);
}

.note-visual::before {
  left: auto;
  right: -85px;
  top: 160px;
  background: var(--yellow);
}

.poster-notes {
  position: relative;
  z-index: 1;
  width: min(410px, 100%);
  aspect-ratio: 1290 / 2796;
  border: 7px solid var(--white);
  border-radius: 38px;
  transform: rotate(1.5deg);
}

.magic-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: var(--purple-dark);
  color: var(--white);
}

.magic-section::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -350px;
  bottom: -310px;
  border: 90px solid rgba(255, 227, 51, 0.13);
  border-radius: 50%;
}

.magic-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -210px;
  top: 210px;
  border-radius: 50%;
  background: rgba(255, 104, 82, 0.2);
}

.magic-report-shell {
  position: relative;
  z-index: 1;
}

.magic-report-heading {
  max-width: 950px;
  margin-bottom: 72px;
}

.magic-report-heading .section-index {
  margin-bottom: 26px;
}

.magic-report-heading h2 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 1.02;
}

.magic-report-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: #ddd6f7;
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.6;
}

.magic-report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: stretch;
  gap: 24px;
}

.magic-report-card {
  height: 1162px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 42px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  box-shadow: 0 34px 80px rgba(16, 7, 45, 0.3);
}

.magic-card {
  background: #fff6ef;
}

.report-card {
  padding: 42px;
  align-items: stretch;
  gap: 24px;
  background: #d9bdff;
}

.magic-report-copy {
  padding: 42px;
}

.magic-report-kicker {
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.report-card .magic-report-kicker {
  color: var(--purple-dark);
}

.magic-report-copy h3 {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: clamp(34px, 3.25vw, 50px);
  line-height: 1.05;
}

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

.magic-offer-item {
  overflow: hidden;
  border: 1px solid rgba(23, 20, 29, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.magic-offer-item:hover {
  border-color: rgba(255, 107, 0, 0.38);
  background: var(--white);
}

.magic-offer-item.is-active {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(95, 45, 21, 0.14);
}

.magic-offer-card {
  width: 100%;
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(23, 20, 29, 0.1);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease,
    transform 220ms ease;
}

.magic-offer-card:hover,
.magic-offer-card:focus-visible {
  border-color: rgba(255, 107, 0, 0.45);
  background: var(--white);
  transform: translateY(-2px);
}

.magic-offer-card:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.3);
  outline-offset: -3px;
}

.magic-offer-card[aria-expanded="true"] {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(95, 45, 21, 0.12);
}

.magic-offer-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
}

.magic-offer-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.magic-offer-title {
  display: block;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
}

.magic-offer-description,
.report-lead {
  display: block;
  color: #524b59;
  line-height: 1.55;
}

.magic-offer-action {
  display: grid;
  place-items: center;
  align-items: center;
  gap: 9px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.magic-offer-action [data-preview-label] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.magic-offer-toggle {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: block;
  background: #fff0e5;
  transition: background 220ms ease, transform 260ms ease;
}

.magic-offer-toggle::before,
.magic-offer-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange-dark);
  transform: translate(-50%, -50%);
}

.magic-offer-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.magic-offer-card[aria-expanded="true"] .magic-offer-toggle {
  background: var(--orange);
  transform: rotate(45deg);
}

.magic-offer-card[aria-expanded="true"] .magic-offer-toggle::before,
.magic-offer-card[aria-expanded="true"] .magic-offer-toggle::after {
  background: var(--white);
}

.magic-offer-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 380ms cubic-bezier(0.2, 0.75, 0.25, 1), opacity 220ms ease;
}

.magic-offer-panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.magic-offer-panel-clip {
  min-height: 0;
  overflow: hidden;
}

.magic-preview-stage {
  margin-top: 14px;
}

.magic-preview-content {
  margin: 0 16px 16px;
  padding: 20px;
  border: 4px solid var(--white);
  border-radius: 24px;
  background: #eee3ff;
  box-shadow: 0 18px 38px rgba(70, 30, 13, 0.14);
}

.magic-preview-heading {
  margin-bottom: 14px;
}

.magic-preview-heading strong {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
}

.sticker-preview-media,
.video-preview-media {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
}

.sticker-preview-media {
  height: 520px;
}

.sticker-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.video-preview-media {
  display: grid;
  place-items: center;
  background: var(--ink);
}

.video-preview-media video {
  width: 100%;
  height: 560px;
  display: block;
  object-fit: contain;
  background: var(--ink);
}

.report-card .report-copy {
  padding: 0;
}

.report-copy h3 {
  margin-bottom: 20px;
}

.report-card .report-copy h3 {
  font-size: clamp(36px, 3vw, 44px);
}

.report-lead {
  color: #453b52;
  font-size: 15px;
}

.report-periods {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.report-periods span {
  padding: 9px 13px;
  border: 1px solid rgba(75, 36, 200, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 700;
}

.report-card-visual {
  position: relative;
  width: min(390px, 100%);
  height: 660px;
  margin: auto auto 0;
  overflow: hidden;
  border: 6px solid var(--white);
  border-radius: 30px;
  background: #d2adff;
  box-shadow: 0 22px 48px rgba(56, 25, 101, 0.22);
}

.report-card-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 64px;
  background: linear-gradient(transparent, rgba(218, 190, 255, 0.36));
  pointer-events: none;
}

.report-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.faq-section {
  background: var(--lavender);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 100px;
}

.faq-heading h2 {
  font-size: clamp(42px, 4.2vw, 64px);
}

.faq-list {
  border-top: 1px solid rgba(75, 36, 200, 0.23);
}

.faq-list details {
  border-bottom: 1px solid rgba(75, 36, 200, 0.23);
}

.faq-list summary {
  position: relative;
  padding: 27px 50px 27px 0;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--purple-dark);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 55px 28px 0;
  color: #5f5676;
}

.download-section {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background: var(--coral);
  color: var(--white);
}

.download-grid {
  min-height: 740px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}

.download-copy {
  position: relative;
  z-index: 3;
}

.download-copy h2 {
  max-width: 730px;
  margin-bottom: 24px;
  font-size: clamp(50px, 6vw, 84px);
}

.download-copy p {
  max-width: 560px;
  margin-bottom: 34px;
  color: #fff0e7;
  font-size: 19px;
}

.button-light {
  background: var(--white);
  color: var(--orange-dark);
  box-shadow: 0 15px 35px rgba(98, 39, 0, 0.22);
}

.button-light:hover {
  background: var(--yellow);
  color: var(--ink);
}

.download-brand {
  position: relative;
  z-index: 2;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.download-brand span {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--yellow);
}

.download-brand::before,
.download-brand::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 50%;
}

.download-brand::before {
  width: 460px;
  height: 460px;
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.download-brand::after {
  width: 115px;
  height: 115px;
  right: 12px;
  top: 90px;
  background: var(--purple);
}

.download-brand img {
  position: relative;
  z-index: 2;
  width: 410px;
  filter: drop-shadow(0 24px 35px rgba(93, 42, 0, 0.16));
}

.download-circle {
  position: absolute;
  border-radius: 50%;
}

.download-circle-yellow {
  width: 520px;
  height: 520px;
  left: -170px;
  bottom: -310px;
  background: var(--yellow);
}

.download-circle-purple {
  width: 210px;
  height: 210px;
  right: -110px;
  top: -80px;
  background: rgba(113, 69, 245, 0.5);
}

footer {
  padding: 42px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  width: 66px;
  height: 66px;
}

.footer-shell p {
  margin: 0;
  color: #bcb7c2;
  font-size: 13px;
}

.footer-copyright {
  justify-self: end;
}

.footer-icp {
  width: 100%;
  margin-top: 4px;
  padding-top: 22px;
  grid-column: 1 / -1;
  justify-self: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a8a2b5;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-icp:hover,
.footer-icp:focus-visible {
  color: var(--white);
}

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

.reveal-delay {
  transition-delay: 150ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 940px);
  }

  .nav-shell {
    grid-template-columns: 130px 1fr 155px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr 390px;
    gap: 42px;
  }

  .hero-copy h1 {
    font-size: 64px;
  }

  .emotion-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.74fr);
    gap: 64px;
  }

  .emotion-intro > h2 + p {
    font-size: 19px;
  }

  .emotion-annotation {
    padding: 10px 13px;
    font-size: 12px;
  }

  .emotion-annotation-analysis {
    left: auto;
    right: -36px;
    top: 70px;
  }

  .emotion-annotation-observation {
    left: -92px;
  }

  .hero-story-poster {
    width: min(500px, 100%);
  }

  .hero-visual::before {
    width: 430px;
    height: 430px;
    border-width: 11px;
  }

  .hero-visual::after {
    width: 94px;
    height: 94px;
    right: -8px;
  }

  .feature-grid {
    gap: 55px;
  }

  .feature-copy h2 {
    font-size: 56px;
  }

  .magic-report-heading h2 {
    font-size: 64px;
  }

  .magic-report-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 20px;
  }

  .magic-report-card {
    height: 1150px;
  }

  .magic-report-copy {
    padding: 32px;
  }

  .magic-report-copy h3 {
    font-size: 40px;
  }

  .report-card {
    padding: 32px;
    gap: 22px;
  }

  .sticker-preview-media {
    height: 480px;
  }

  .video-preview-media video {
    height: 500px;
  }

  .report-card-visual {
    width: min(340px, 100%);
    height: 580px;
  }

  .poster-feature {
    width: 430px;
  }

  .smart-upload {
    padding: 52px;
  }

  .faq-grid {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  section[id] {
    scroll-margin-top: 74px;
  }

  .nav-shell {
    height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 66px;
    height: 66px;
  }

  .desktop-nav,
  .nav-shell > .button {
    display: none;
  }

  .menu-button {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-content: center;
    gap: 7px;
    background: var(--ink);
    cursor: pointer;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--white);
    transition: transform 200ms ease;
  }

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

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 76px 0 0;
    padding: 38px 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-115%);
    transition: transform 260ms ease, opacity 220ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.button) {
    padding: 20px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 28px;
    font-weight: 600;
  }

  .mobile-nav .button {
    margin-top: 28px;
  }

  .hero {
    min-height: 0;
    padding: 124px 0 90px;
  }

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

  .hero-grid {
    gap: 54px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(52px, 11vw, 78px);
  }

  .hero-visual {
    min-height: 640px;
  }

  .poster-feature {
    width: 340px;
    aspect-ratio: 1290 / 2796;
    border-radius: 31px;
  }

  .hero-story-poster {
    width: min(540px, 100%);
  }

  .emotion-section,
  .album-section,
  .notes-section,
  .magic-section,
  .faq-section {
    padding: 100px 0;
  }

  .emotion-showcase {
    grid-template-columns: minmax(0, 1fr);
    gap: 80px;
  }

  .emotion-intro {
    max-width: 760px;
  }

  .emotion-intro > h2 + p {
    max-width: 680px;
    font-size: 20px;
  }

  .emotion-result-poster {
    width: 430px;
  }

  .emotion-result-visual::before {
    left: 50%;
    right: auto;
    transform: translateX(-38%);
  }

  .emotion-annotation {
    font-size: 13px;
  }

  .emotion-annotation-analysis {
    left: auto;
    right: max(-12px, calc(50% - 370px));
    top: 60px;
  }

  .emotion-annotation-observation {
    left: max(0px, calc(50% - 360px));
  }

  .album-grid .feature-copy {
    order: 0;
  }

  .album-grid .feature-visual {
    order: 1;
  }

  .feature-grid {
    gap: 76px;
  }

  .album-grid .feature-copy h2 {
    font-size: clamp(48px, 8vw, 60px);
  }

  .feature-visual::before {
    left: 50%;
    transform: translateX(-62%);
  }

  .note-visual::before {
    left: 50%;
    right: auto;
    transform: translateX(-38%);
  }

  .smart-upload {
    margin-top: 88px;
    padding: 46px;
  }

  .poster-notes {
    width: 350px;
    border-radius: 31px;
  }

  .magic-report-heading {
    margin-bottom: 50px;
  }

  .magic-report-heading h2 {
    max-width: 720px;
    font-size: clamp(48px, 8vw, 66px);
  }

  .magic-report-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 26px;
  }

  .magic-report-card {
    height: auto;
  }

  .magic-card {
    height: 1220px;
    width: 100%;
    max-width: 720px;
    justify-self: center;
  }

  .report-card {
    width: 100%;
    max-width: 620px;
    padding: 38px;
    gap: 28px;
    justify-self: center;
  }

  .magic-report-copy {
    padding: 38px;
  }

  .sticker-preview-media,
  .video-preview-media video {
    height: 520px;
  }

  .report-card-visual {
    width: min(390px, 100%);
    height: 660px;
  }

  .download-grid {
    min-height: 980px;
    padding-top: 100px;
    grid-template-columns: minmax(0, 1fr);
    gap: 25px;
  }

  .download-copy {
    min-width: 0;
  }

  .download-brand {
    min-height: 560px;
  }

  .download-brand span {
    width: 450px;
    height: 450px;
  }

  .download-brand::before {
    width: 400px;
    height: 400px;
  }

  .download-brand img {
    width: 350px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 32px);
    --radius-large: 30px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(47px, 14vw, 67px);
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-copy h1 .hero-title-accent::after {
    height: 6px;
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

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

  .hero-visual {
    --hero-ball-shift-x: 18px;
    --hero-ball-shift-y: 8px;
    min-height: 500px;
  }

  .hero-visual::before {
    width: 370px;
    height: 370px;
    border-width: 10px;
  }

  .hero-visual::after {
    width: 82px;
    height: 82px;
    right: -12px;
    top: 54px;
  }

  .poster-feature {
    width: min(300px, calc(100vw - 68px));
    border-width: 6px;
    border-radius: 28px;
  }

  .hero-story-poster {
    width: min(340px, calc(100vw - 34px));
    border-width: 7px;
    border-radius: 36px;
    transform: rotate(1deg);
  }

  .emotion-section,
  .album-section,
  .notes-section,
  .magic-section,
  .faq-section {
    padding: 82px 0;
  }

  .emotion-intro h2,
  .feature-copy h2,
  .faq-heading h2 {
    font-size: clamp(40px, 12vw, 57px);
  }

  .album-grid .feature-copy h2 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .emotion-intro > h2 + p,
  .feature-lead {
    font-size: 18px;
  }

  .emotion-annotation {
    display: none;
  }

  .album-grid .feature-lead {
    margin-bottom: 40px;
    font-size: 18px;
  }

  .emotion-showcase {
    gap: 64px;
  }

  .emotion-result-poster {
    width: min(320px, calc(100vw - 64px));
    border-width: 6px;
    border-radius: 28px;
  }

  .emotion-result-visual::before {
    width: 310px;
    height: 310px;
    top: 85px;
  }

  .magic-report-heading h2 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .magic-report-heading > p:last-child {
    font-size: 18px;
  }

  .magic-report-card {
    border-radius: 30px;
  }

  .magic-report-copy {
    padding: 26px;
  }

  .magic-report-copy h3 {
    margin-bottom: 24px;
    font-size: 34px;
  }

  .magic-offer-card {
    padding: 15px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .magic-offer-number {
    width: 42px;
    height: 42px;
  }

  .magic-offer-action {
    grid-column: 2;
    justify-content: space-between;
  }

  .report-card {
    padding: 26px;
    gap: 24px;
  }

  .report-card .report-copy {
    padding: 0;
  }

  .report-card .report-copy h3 {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .report-card .report-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .report-card .report-periods {
    margin-top: 20px;
    gap: 8px;
  }

  .report-card .report-periods span {
    padding: 8px 10px;
    font-size: 12px;
  }

  .report-card-visual {
    width: 100%;
    margin: 0 auto;
    border-width: 5px;
    border-radius: 23px;
  }

  .magic-preview-content {
    margin: 0 12px 12px;
    padding: 14px;
    border-width: 4px;
    border-radius: 20px;
  }

  .sticker-preview-media {
    height: 420px;
  }

  .video-preview-media video {
    height: 480px;
  }

  .report-card-visual {
    height: 500px;
  }

  .magic-card {
    height: 1180px;
  }

  .album-benefits {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .album-benefit {
    min-height: 0;
    padding: 15px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }

  .album-benefit-icon {
    flex: 0 0 auto;
  }

  .smart-upload {
    padding: 28px;
  }

  .smart-copy h3 {
    font-size: 40px;
  }

  .smart-lead {
    font-size: 17px;
    line-height: 1.65;
  }

  .poster-notes {
    width: min(300px, calc(100vw - 68px));
    border-width: 6px;
    border-radius: 28px;
  }

  .notes-quote p {
    font-size: 20px;
  }

  .faq-grid {
    gap: 42px;
  }

  .faq-list summary {
    font-size: 19px;
  }

  .download-grid {
    min-height: 880px;
    padding-top: 84px;
  }

  .download-copy h2 {
    font-size: 44px;
  }

  .download-brand {
    min-height: 470px;
  }

  .download-brand span {
    width: 350px;
    height: 350px;
  }

  .download-brand::before {
    width: 310px;
    height: 310px;
  }

  .download-brand::after {
    width: 85px;
    height: 85px;
    right: -8px;
    top: 70px;
  }

  .download-brand img {
    width: 280px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-copyright {
    justify-self: start;
  }
}

/* Compact desktop storytelling panels so each feature reads within one viewport. */
@media (min-width: 821px) {
  .notes-section {
    padding: 70px 0;
  }

  .notes-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 92px;
  }

  .notes-copy h2 {
    margin-bottom: 26px;
    font-size: clamp(54px, 4.2vw, 64px);
    line-height: 1.02;
  }

  .notes-copy .feature-lead {
    margin-bottom: 0;
    font-size: 19px;
    line-height: 1.6;
  }

  .notes-quote {
    margin: 30px 0 26px;
    padding-left: 22px;
  }

  .notes-quote p {
    font-size: 24px;
  }

  .notes-copy .feature-list li {
    min-height: 56px;
    padding-block: 14px;
    font-size: 17px;
  }

  .note-visual::before {
    width: 440px;
    height: 440px;
    top: 142px;
  }

  .poster-notes {
    width: min(360px, 100%);
    border-width: 6px;
    border-radius: 34px;
  }

  .magic-section {
    padding: 34px 0;
  }

  .magic-report-heading {
    max-width: 900px;
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .magic-report-heading .section-index {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .magic-report-heading h2 {
    max-width: 880px;
    margin-bottom: 0;
    font-size: clamp(42px, 3.6vw, 54px);
    line-height: 1.02;
  }

  .magic-report-heading > p:last-child {
    font-size: 17px;
    line-height: 1.5;
  }

  .magic-report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .magic-report-card {
    height: 840px;
    border-radius: 34px;
  }

  .magic-report-copy {
    padding: 26px;
  }

  .magic-report-kicker {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .magic-report-copy h3,
  .report-card .report-copy h3 {
    margin-bottom: 18px;
    font-size: clamp(32px, 2.5vw, 38px);
  }

  .magic-offers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .magic-offer-card {
    min-height: 112px;
    padding: 14px;
    grid-template-columns: 42px minmax(0, 1fr) 32px;
    gap: 10px;
    border-radius: 20px;
  }

  .magic-offer-number {
    width: 42px;
    height: 42px;
  }

  .magic-offer-title {
    font-size: 18px;
  }

  .magic-offer-description,
  .report-lead {
    font-size: 13px;
    line-height: 1.4;
  }

  .magic-preview-stage {
    margin-top: 14px;
  }

  .magic-preview-content {
    margin: 0;
    padding: 14px;
    border-radius: 20px;
  }

  .magic-preview-heading {
    margin-bottom: 10px;
  }

  .magic-preview-heading strong {
    font-size: 18px;
  }

  .sticker-preview-media {
    width: 310px;
    height: 455px;
    margin-inline: auto;
  }

  .video-preview-media video {
    height: 455px;
  }

  .report-card {
    padding: 26px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .report-card .report-copy h3 {
    max-width: 520px;
    font-size: clamp(32px, 2.5vw, 38px);
  }

  .report-card .report-lead {
    max-width: 560px;
    font-size: 14px;
    line-height: 1.48;
  }

  .report-periods {
    margin-top: 14px;
  }

  .report-card-visual {
    width: 310px;
    height: auto;
    aspect-ratio: 666 / 1200;
    margin: auto auto 0;
    border-width: 5px;
    border-radius: 24px;
  }

  .report-card-visual::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .smart-upload {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .smart-copy {
    max-width: 680px;
  }

  .magic-card {
    height: auto;
  }

  .magic-preview-stage {
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .smart-upload {
    min-height: 0;
    gap: 28px;
  }

  .smart-screen-flow {
    width: min(280px, 100%);
    height: 228px;
  }

  .smart-screen-card {
    width: 48%;
    height: 218px;
    padding: 5px 5px 0;
    border-radius: 20px;
  }

  .smart-screen-card-scan {
    top: 8px;
  }

  .smart-screen-crop {
    height: 172px;
    border-radius: 15px 15px 10px 10px;
  }

  .smart-screen-card figcaption {
    min-height: 40px;
    padding: 6px;
    gap: 6px;
  }

  .smart-screen-card figcaption span {
    width: 23px;
    height: 23px;
    font-size: 9px;
  }

  .smart-screen-card figcaption strong {
    font-size: 12px;
  }

  .smart-flow-arrow {
    top: 90px;
    width: 38px;
    height: 38px;
    border-width: 4px;
  }

  .smart-private-chip {
    min-height: 40px;
    font-size: 12px;
  }

  .magic-offers {
    grid-template-columns: minmax(0, 1fr);
  }

  .magic-offer-card {
    min-height: 0;
  }

  .magic-card {
    height: auto;
  }

  .sticker-preview-media {
    width: min(310px, 100%);
    height: auto;
    aspect-ratio: 818 / 1200;
    margin-inline: auto;
  }

  .report-card-visual {
    height: auto;
    aspect-ratio: 666 / 1200;
  }
}

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

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

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

  .magic-preview-content,
  .report-card-visual img {
    animation: none;
    transform: none;
  }

  .hero-visual::before,
  .hero-visual::after {
    animation: none;
  }

  .hero-story-video {
    display: none;
  }

}
