:root {
  --ink: #090909;
  --muted: #5c5c55;
  --paper: #fbfbf6;
  --paper-strong: #ffffff;
  --line: #171717;
  --soft-line: rgba(9, 9, 9, 0.12);
  --neon: #d7ff1f;
  --neon-deep: #a3d900;
  --mist: #e9f2f0;
  --sand: #efe7d8;
  --blue: #d9f1ff;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(9, 9, 9, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    sans-serif;
}

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 76px;
  padding: 0 clamp(20px, 5vw, 56px);
  mix-blend-mode: multiply;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 800;
  letter-spacing: 0;
}

.wordmark-mark {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.header-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 42px);
  color: var(--muted);
  font-size: 13px;
}

.header-links a,
.header-cta,
.text-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.header-cta {
  justify-self: end;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 88vh;
  padding: 128px 20px 96px;
  overflow: hidden;
  isolation: isolate;
}

.dot-field,
.board-dots {
  position: absolute;
  inset: -60px;
  background-image: radial-gradient(rgba(9, 9, 9, 0.22) 1px, transparent 1px);
  background-size: 22px 22px;
  transform: translate3d(var(--grid-x, 0), var(--grid-y, 0), 0);
  transition: transform 0.3s ease-out;
  opacity: 0.42;
}

.dot-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--paper), rgba(251, 251, 246, 0) 20%, rgba(251, 251, 246, 0) 80%, var(--paper)),
    linear-gradient(180deg, var(--paper), rgba(251, 251, 246, 0) 24%, rgba(251, 251, 246, 0) 70%, var(--paper));
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 840px;
  text-align: center;
}

.availability,
.section-kicker,
.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  margin-bottom: 24px;
  font-size: clamp(72px, 13.4vw, 156px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
}

.brand-word {
  display: inline-block;
}

.brand-part {
  display: inline;
}

.hero-app-icon {
  width: clamp(58px, 8vw, 92px);
  height: clamp(58px, 8vw, 92px);
  flex: 0 0 auto;
  border-radius: clamp(14px, 1.8vw, 24px);
  object-fit: cover;
  transform: rotate(4deg) translateY(4px);
  box-shadow: 6px 6px 0 var(--ink);
}

.hero-subtitle {
  max-width: 710px;
  margin: 0 auto;
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-subtitle::selection,
h1::selection,
h2::selection,
h3::selection,
p::selection,
span::selection,
strong::selection {
  background: var(--neon);
  color: var(--ink);
}

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

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--neon);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.primary-button:hover,
.download-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.text-link {
  font-size: 15px;
  font-weight: 800;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.float-card,
.float-chip {
  position: absolute;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.float-card {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.float-card strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.image-card {
  grid-template-columns: 76px 130px;
  align-items: center;
}

.image-strip {
  height: 72px;
  border-radius: 7px;
  border: 1px solid var(--soft-line);
}

.sunset {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 68% 24%, #fff7b8 0 10%, transparent 11%),
    linear-gradient(160deg, #111 0 16%, #f8e1b5 17% 46%, #ff9248 47% 61%, #91cfd6 62%);
}

.note-card {
  width: 206px;
  background: var(--sand);
}

.pdf-card {
  width: 190px;
  background: var(--paper-strong);
}

.card-one {
  left: clamp(-82px, -3vw, -36px);
  top: clamp(138px, 21vh, 190px);
  animation: drift-one 9s ease-in-out infinite;
}

.card-two {
  right: clamp(-54px, -2vw, -24px);
  top: clamp(122px, 18vh, 160px);
  transform: rotate(4deg);
  animation: drift-two 10s ease-in-out infinite;
}

.card-three {
  right: clamp(38px, 5vw, 86px);
  bottom: clamp(76px, 16vh, 138px);
  transform: rotate(-5deg);
  animation: drift-three 8.5s ease-in-out infinite;
}

.float-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  background: var(--neon);
  border-color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
}

.chip-one {
  left: 50%;
  top: clamp(140px, 19vh, 172px);
  transform: translateX(-50%) rotate(-3deg);
  animation: chip-hover 6.5s ease-in-out infinite;
}

.chip-two {
  right: clamp(92px, 13vw, 180px);
  bottom: clamp(18px, 6vh, 54px);
  transform: rotate(3deg);
}

.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 28px;
}

.waveform span {
  width: 5px;
  border-radius: 999px;
  background: var(--ink);
}

.waveform span:nth-child(1) { height: 8px; }
.waveform span:nth-child(2) { height: 20px; }
.waveform span:nth-child(3) { height: 13px; }
.waveform span:nth-child(4) { height: 24px; }
.waveform span:nth-child(5) { height: 10px; }
.waveform span:nth-child(6) { height: 18px; }

.mini-pages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.mini-pages span {
  display: block;
  height: 58px;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  background:
    linear-gradient(var(--ink) 0 0) 11px 13px / 32px 2px no-repeat,
    linear-gradient(var(--soft-line) 0 0) 11px 24px / 46px 2px no-repeat,
    var(--paper);
}

.scribble {
  position: absolute;
  width: 90px;
  height: 64px;
  border: 2px solid transparent;
}

.scribble::before,
.scribble::after {
  content: "";
  position: absolute;
  border: 2px solid var(--ink);
}

.scribble-one {
  left: 18vw;
  bottom: 16vh;
}

.scribble-one::before {
  width: 44px;
  height: 26px;
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 40px 0;
  transform: rotate(-18deg);
}

.scribble-one::after {
  right: 8px;
  top: 0;
  width: 20px;
  height: 20px;
  border-color: var(--neon-deep);
  border-radius: 50%;
}

.scribble-two {
  right: 24vw;
  top: 20vh;
}

.scribble-two::before {
  width: 58px;
  height: 24px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 44px 0 0 0;
  transform: rotate(24deg);
}

.scribble-two::after {
  right: 8px;
  top: 30px;
  width: 9px;
  height: 9px;
  background: var(--neon);
  border-color: var(--ink);
  border-radius: 50%;
}

.canvas-preview,
.speed-section,
.download-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.canvas-preview {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(420px, 1.4fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: 78px 0 110px;
}

.section-copy h2 {
  margin: 10px 0 16px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.speed-copy h2,
.download-section h2 {
  margin: 10px 0 16px;
  font-size: clamp(36px, 6vw, 74px);
  line-height: 0.95;
  letter-spacing: 0;
}

.section-copy p:not(.section-kicker),
.speed-copy p:not(.section-kicker),
.download-section p:not(.section-kicker) {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.board {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 9px 9px 0 var(--ink);
}

.board-dots {
  inset: -80px;
  background-size: 18px 18px;
  opacity: 0.22;
}

.board-item {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(9, 9, 9, 0.12);
  padding: 12px;
}

.board-item span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.board-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.board-image {
  left: 8%;
  top: 12%;
  width: 240px;
}

.thumb {
  height: 138px;
  margin-bottom: 12px;
  border: 1px solid var(--soft-line);
  border-radius: 7px;
}

.collage-a {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 38%),
    radial-gradient(circle at 22% 32%, #eaff63 0 12%, transparent 13%),
    linear-gradient(150deg, #151515 0 18%, #fbf6ea 19% 34%, #f1b772 35% 62%, #83b2a3 63%);
}

.board-note {
  right: 10%;
  top: 16%;
  width: 210px;
  background: var(--neon);
  border-color: var(--ink);
  transform: rotate(3deg);
}

.board-voice {
  left: 24%;
  bottom: 11%;
  width: 184px;
  background: var(--blue);
}

.board-pdf {
  right: 13%;
  bottom: 13%;
  width: 196px;
  background: var(--paper);
  transform: rotate(-4deg);
}

.waveform.dark span {
  background: var(--ink);
}

.pdf-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.pdf-lines i {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
}

.pdf-lines i:nth-child(2) {
  width: 78%;
}

.pdf-lines i:nth-child(3) {
  width: 52%;
}

.connector {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-dasharray: 5 9;
  opacity: 0.42;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
}

.feature-card {
  min-height: 430px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper-strong);
}

.feature-card + .feature-card {
  border-left: 1px solid var(--ink);
}

.feature-card.neon {
  background: var(--neon);
}

.feature-card p {
  margin-bottom: 20px;
  font-weight: 900;
}

.feature-visual {
  position: relative;
  height: 154px;
  margin-bottom: 34px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background:
    radial-gradient(rgba(9, 9, 9, 0.2) 1px, transparent 1px) 0 0 / 14px 14px,
    var(--paper);
}

.feature-visual::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 54px;
  height: 10px;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0.12;
}

.visual-window {
  position: absolute;
  left: 18px;
  top: 18px;
  display: flex;
  gap: 6px;
}

.visual-window i {
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--neon);
}

.visual-photo {
  position: absolute;
  width: 98px;
  height: 76px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  box-shadow: 5px 5px 0 var(--ink);
}

.photo-a {
  left: 34px;
  top: 56px;
  background:
    radial-gradient(circle at 26% 28%, var(--neon) 0 12%, transparent 13%),
    linear-gradient(145deg, #171717 0 22%, #fff8de 23% 44%, #f0b56f 45% 68%, #8fb7a8 69%);
  transform: rotate(-6deg);
}

.photo-b {
  right: 34px;
  top: 38px;
  background:
    radial-gradient(circle at 74% 24%, #ffffff 0 10%, transparent 11%),
    linear-gradient(150deg, #d9f1ff 0 34%, #111 35% 46%, #efe7d8 47% 72%, var(--neon) 73%);
  transform: rotate(7deg);
}

.visual-pointer {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 34px;
  height: 34px;
  border-right: 12px solid var(--ink);
  border-bottom: 12px solid var(--ink);
  transform: translateX(-50%) rotate(45deg);
}

.board-visual {
  background:
    radial-gradient(rgba(9, 9, 9, 0.18) 1px, transparent 1px) 0 0 / 14px 14px,
    rgba(255, 255, 255, 0.3);
}

.visual-page {
  position: absolute;
  top: 34px;
  width: 78px;
  height: 96px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  background:
    linear-gradient(var(--ink) 0 0) 12px 18px / 42px 3px no-repeat,
    linear-gradient(rgba(9, 9, 9, 0.28) 0 0) 12px 34px / 54px 2px no-repeat,
    linear-gradient(rgba(9, 9, 9, 0.28) 0 0) 12px 48px / 38px 2px no-repeat,
    var(--paper-strong);
  box-shadow: 5px 5px 0 var(--ink);
}

.page-one {
  left: 24px;
  transform: rotate(-8deg);
}

.page-two {
  left: calc(50% - 39px);
  background:
    linear-gradient(var(--ink) 0 0) 12px 18px / 42px 3px no-repeat,
    radial-gradient(circle at 50% 58%, var(--neon) 0 20%, transparent 21%),
    var(--paper-strong);
}

.page-three {
  right: 24px;
  transform: rotate(8deg);
}

.visual-export {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  background: var(--ink);
  color: var(--neon);
  font-size: 13px;
  font-weight: 900;
}

.voice-visual {
  display: grid;
  place-items: center;
}

.visual-mic {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 44px;
  height: 64px;
  border: 3px solid var(--ink);
  border-radius: 999px 999px 16px 16px;
  background: var(--neon);
  box-shadow: 5px 5px 0 var(--ink);
}

.visual-mic::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 34px;
  height: 18px;
  border-bottom: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
  border-radius: 0 0 20px 20px;
  transform: translateX(-50%);
}

.visual-wave {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 80px;
  transform: translateX(28px);
}

.visual-wave i {
  display: block;
  width: 9px;
  border-radius: 999px;
  background: var(--ink);
}

.visual-wave i:nth-child(1) { height: 22px; }
.visual-wave i:nth-child(2) { height: 48px; }
.visual-wave i:nth-child(3) { height: 34px; }
.visual-wave i:nth-child(4) { height: 72px; background: var(--neon); border: 2px solid var(--ink); }
.visual-wave i:nth-child(5) { height: 42px; }
.visual-wave i:nth-child(6) { height: 58px; }
.visual-wave i:nth-child(7) { height: 24px; }

.visual-tag {
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 8px 11px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  background: var(--neon);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(5deg);
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: 0;
}

.feature-card span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.feature-card.neon span {
  color: rgba(9, 9, 9, 0.76);
}

.speed-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  padding: 118px 0 90px;
}

.speed-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-strong);
  box-shadow: 8px 8px 0 var(--ink);
}

.speed-list div {
  min-height: 170px;
  padding: 22px;
}

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

.speed-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.speed-list strong {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
}

.download-section {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 470px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  margin-bottom: 48px;
  padding: clamp(28px, 5vw, 56px);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-strong);
}

.download-section .section-kicker,
.download-section p {
  color: rgba(255, 255, 255, 0.72);
}

.download-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 10px 0 16px;
}

.download-heading img {
  width: clamp(54px, 7vw, 76px);
  height: clamp(54px, 7vw, 76px);
  flex: 0 0 auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--neon);
}

.download-heading h2 {
  margin: 0;
}

.download-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: min(100%, 360px);
  min-height: 64px;
  padding: 0 20px;
  border: 2px solid var(--neon);
  border-radius: var(--radius);
  background: var(--neon);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--paper-strong);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.download-button span {
  font-size: 18px;
  font-weight: 900;
}

.download-button small {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.download-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  white-space: nowrap;
}

@keyframes drift-one {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(12px, -18px, 0) rotate(2deg); }
}

@keyframes drift-two {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(4deg); }
  50% { transform: translate3d(-16px, 14px, 0) rotate(1deg); }
}

@keyframes drift-three {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-5deg); }
  50% { transform: translate3d(10px, 18px, 0) rotate(-2deg); }
}

@keyframes chip-hover {
  0%, 100% { transform: translate3d(-50%, 0, 0) rotate(-3deg); }
  50% { transform: translate3d(calc(-50% + 6px), -10px, 0) rotate(2deg); }
}

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

  .header-links {
    display: none;
  }

  .canvas-preview,
  .speed-section,
  .download-section {
    grid-template-columns: 1fr;
  }

  .canvas-preview {
    padding-top: 48px;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-card + .feature-card {
    border-left: 0;
    border-top: 1px solid var(--ink);
  }

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

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

@media (max-width: 680px) {
  .hero {
    min-height: 86vh;
    padding: 108px 18px 80px;
  }

  h1 {
    flex-direction: row;
    gap: 12px;
    font-size: clamp(56px, 18vw, 72px);
    line-height: 0.82;
  }

  .hero-app-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    transform: rotate(4deg) translateY(2px);
  }

  .brand-part {
    display: block;
  }

  .hero-subtitle {
    max-width: 340px;
    font-size: 18px;
  }

  .card-one {
    left: -56px;
    top: 19vh;
  }

  .card-two {
    right: -72px;
    top: 17vh;
  }

  .card-three {
    right: -42px;
    bottom: 12vh;
  }

  .chip-one {
    left: 50%;
    top: 19vh;
    bottom: auto;
  }

  .chip-two {
    right: 9vw;
    bottom: 16vh;
  }

  .scribble-one,
  .scribble-two {
    display: none;
  }

  .board {
    min-height: 520px;
  }

  .board-image {
    left: 6%;
    top: 7%;
    width: 210px;
  }

  .board-note {
    right: 5%;
    top: 38%;
    width: 190px;
  }

  .board-voice {
    left: 7%;
    bottom: 10%;
  }

  .board-pdf {
    right: 6%;
    bottom: 6%;
    width: 160px;
  }

  .section-copy h2 {
    font-size: 42px;
  }

  .download-button {
    width: 100%;
  }

  .download-note {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
