:root {
  --blue-950: #06184f;
  --blue-900: #08297e;
  --blue-700: #0b55c4;
  --blue-500: #2b7cff;
  --blue-100: #e9f1ff;
  --orange: #ff6a13;
  --orange-100: #fff0e6;
  --red: #e92717;
  --ink: #14213d;
  --muted: #5d6a7f;
  --line: #d9e4f5;
  --bg: #ffffff;
  --soft: #f5f8ff;
  --shadow: 0 22px 48px rgba(8, 41, 126, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
}

img,
iframe {
  max-width: 100%;
}

img {
  height: auto;
  display: block;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 41, 126, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark,
.paper-plane {
  position: relative;
  width: 44px;
  height: 34px;
}

.brand-mark::before,
.paper-plane::before {
  content: "";
  position: absolute;
  inset: 4px 2px;
  clip-path: polygon(0 45%, 100% 0, 66% 100%, 49% 58%);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-950));
}

.brand strong {
  display: block;
  color: var(--blue-900);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--blue-900);
  font-size: 14px;
  font-weight: 800;
}

.nav-cta {
  padding: 9px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(233, 39, 23, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(112deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 42%, rgba(232,241,255,0.88) 100%),
    repeating-linear-gradient(-18deg, transparent 0 18px, rgba(11,85,196,0.08) 18px 20px);
}

.speed-lines::before,
.speed-lines::after {
  content: "";
  position: absolute;
  width: 54vw;
  height: 18vw;
  pointer-events: none;
}

.speed-lines::before {
  left: -14vw;
  top: -4vw;
  transform: rotate(-28deg);
  background: linear-gradient(90deg, transparent, rgba(11,85,196,0.24), transparent);
}

.speed-lines::after {
  right: -16vw;
  bottom: 4vw;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,106,19,0.26), transparent);
}

.hero-inner,
.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.08;
  font-weight: 900;
}

h1 span {
  display: inline-block;
  color: var(--red);
}

h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.35;
  font-weight: 900;
}

h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
}

.lead {
  max-width: 690px;
  margin: 28px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.hero-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.4;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 14px 30px rgba(233, 39, 23, 0.26);
}

.button.secondary {
  color: var(--blue-900);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 12px 26px rgba(8, 41, 126, 0.08);
}

.button.large {
  min-width: min(100%, 320px);
  font-size: 20px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  padding: 8px 12px;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 900;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-visual {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 228, 245, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.plane-hero {
  position: absolute;
  top: -22px;
  right: 26px;
  width: 72px;
  height: 54px;
  filter: drop-shadow(0 14px 16px rgba(8, 41, 126, 0.22));
  animation: planeFloat 4.5s ease-in-out infinite;
}

.conversion-stage {
  display: grid;
  gap: 16px;
}

.conversion-node {
  position: relative;
  min-height: 144px;
  padding: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.conversion-node::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -30px;
  width: 150px;
  height: 104px;
  opacity: 0.9;
}

.conversion-node.source::after {
  background:
    linear-gradient(#fff, #fff) padding-box,
    repeating-linear-gradient(0deg, var(--line) 0 2px, transparent 2px 14px);
  border: 3px solid var(--blue-700);
  transform: rotate(-9deg);
}

.conversion-node.cg::after {
  width: 122px;
  height: 122px;
  right: -8px;
  bottom: -44px;
  background:
    linear-gradient(135deg, rgba(11, 85, 196, 0.18), rgba(255, 106, 19, 0.18)),
    repeating-linear-gradient(90deg, transparent 0 16px, rgba(11, 85, 196, 0.24) 16px 18px),
    repeating-linear-gradient(0deg, transparent 0 16px, rgba(11, 85, 196, 0.24) 16px 18px);
  border: 3px solid var(--blue-700);
  transform: perspective(220px) rotateX(55deg) rotateZ(45deg);
}

.conversion-node.output::after {
  right: -14px;
  bottom: -16px;
  width: 136px;
  height: 86px;
  background: linear-gradient(135deg, #dfeeff, #fff 45%, #ffb18d);
  border: 5px solid var(--blue-900);
  border-radius: 8px;
}

.conversion-node small {
  color: var(--orange);
  font-weight: 900;
}

.conversion-node strong,
.conversion-node p {
  position: relative;
  z-index: 1;
}

.conversion-node strong {
  display: block;
  margin-top: 6px;
  color: var(--blue-900);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 900;
}

.conversion-node p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.conversion-path {
  height: 18px;
  position: relative;
}

.conversion-path::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  border-top: 2px dashed rgba(11, 85, 196, 0.34);
}

.conversion-path span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 18px;
  transform: translate(-50%, -50%) rotate(90deg);
  background: var(--orange);
  clip-path: polygon(0 28%, 62% 28%, 62% 0, 100% 50%, 62% 100%, 62% 72%, 0 72%);
}

.section {
  padding: clamp(68px, 8vw, 108px) 0;
}

.section:nth-of-type(even) {
  background: var(--soft);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading p:not(.section-kicker) {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.intro-body {
  padding: 30px;
  background: #fff;
  border-left: 6px solid var(--orange);
  box-shadow: var(--shadow);
}

.intro-body p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.intro-body ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.intro-body li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.intro-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
}

.timeline-compare {
  display: grid;
  gap: 18px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(8, 41, 126, 0.06);
}

.timeline-row.highlight {
  border-color: rgba(255, 106, 19, 0.38);
  background: linear-gradient(135deg, #fff, var(--orange-100));
}

.timeline-label {
  color: var(--blue-900);
  font-size: 20px;
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline.conventional {
  grid-template-columns: repeat(3, 1fr);
}

.timeline.flying {
  grid-template-columns: repeat(4, 1fr);
}

.timeline li {
  position: relative;
  min-height: 76px;
  padding: 18px 14px;
  color: var(--blue-900);
  font-weight: 900;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 26px;
  height: 12px;
  transform: translateY(-50%);
  background: var(--orange);
  clip-path: polygon(0 28%, 62% 28%, 62% 0, 100% 50%, 62% 100%, 62% 72%, 0 72%);
  z-index: 1;
}

.section-cta {
  justify-content: center;
  margin-top: 36px;
  text-align: center;
}

.section-cta p {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.target-grid article {
  min-height: 100%;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue-700);
  box-shadow: 0 14px 32px rgba(8, 41, 126, 0.07);
}

.target-grid strong {
  display: block;
  color: var(--blue-900);
  font-size: 21px;
  font-weight: 900;
}

.target-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.ba-stage {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 0.72fr) 1fr;
  gap: 24px;
  align-items: stretch;
}

.ba-column {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.ba-column h3 {
  margin-bottom: 18px;
}

.ba-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ba-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px;
  color: var(--blue-900);
  font-weight: 900;
  background: var(--soft);
  border: 1px solid var(--line);
}

.mini-icon {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  background: #fff;
  border: 2px solid var(--blue-700);
}

.mini-icon.photo {
  border-radius: 6px;
  background: linear-gradient(135deg, #cfe2ff, #fff 60%, #ffd0bc);
}

.mini-icon.sketch {
  transform: rotate(-8deg);
}

.mini-icon.file::after,
.mini-icon.deck::after,
.mini-icon.web::after,
.mini-icon.lp::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 10px;
  border-top: 2px solid var(--blue-700);
  box-shadow: 0 7px 0 var(--blue-700), 0 14px 0 var(--blue-700);
}

.mini-icon.movie::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--orange);
}

.mini-icon.sns {
  border-radius: 50%;
}

.ba-transform {
  position: relative;
  display: grid;
  place-content: center;
  gap: 10px;
  min-height: 320px;
  padding: 26px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(8, 41, 126, 0.96), rgba(11, 85, 196, 0.92)),
    repeating-linear-gradient(-18deg, transparent 0 18px, rgba(255,255,255,0.14) 18px 20px);
  overflow: hidden;
}

.plane-transform {
  width: 88px;
  height: 66px;
  margin: 0 auto 12px;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.22));
  animation: planeGlide 5.5s ease-in-out infinite;
}

.plane-transform::before,
.plane-final::before {
  background: linear-gradient(135deg, #fff, #b9d5ff);
}

.ba-transform strong {
  font-size: 24px;
  font-weight: 900;
}

.ba-transform span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.chips span {
  min-width: 132px;
  padding: 14px 18px;
  color: var(--blue-900);
  text-align: center;
  font-weight: 900;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(8, 41, 126, 0.06);
}

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

.example-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.example-copy span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  background: var(--orange-100);
}

.example-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: var(--blue-950);
}

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

.plan-grid article {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(8, 41, 126, 0.07);
}

.plan-grid article.featured {
  border-top: 6px solid var(--orange);
  box-shadow: 0 22px 48px rgba(255, 106, 19, 0.14);
}

.plan-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 38px;
  margin: 0 0 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-950));
}

.plan-grid article > p:not(.plan-no) {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.plan-grid dl {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.plan-grid dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.plan-grid dt {
  color: var(--muted);
  font-weight: 700;
}

.plan-grid dd {
  margin: 0;
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
  text-align: right;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  min-height: 220px;
  padding: 24px 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(8, 41, 126, 0.07);
}

.flow-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-950));
}

.flow-list strong {
  display: block;
  color: var(--blue-900);
  font-size: 18px;
  line-height: 1.5;
}

.flow-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(8, 41, 126, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--blue-900);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-weight: 700;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 96px) 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(233,39,23,0.96), rgba(255,106,19,0.94)),
    repeating-linear-gradient(-18deg, transparent 0 18px, rgba(255,255,255,0.2) 18px 21px);
}

.final-cta-inner {
  position: relative;
  text-align: center;
}

.plane-final {
  width: 84px;
  height: 62px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.2));
  animation: planeFloat 4.8s ease-in-out infinite;
}

.final-cta p {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.final-cta h2 {
  max-width: 880px;
  margin: 0 auto 28px;
  color: #fff;
}

.final-cta .button.primary {
  color: var(--red);
  background: #fff;
}

.contact-section {
  padding: clamp(68px, 8vw, 108px) 0;
  color: #fff;
  background: var(--blue-950);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.contact-inner h2 {
  color: #fff;
}

.contact-inner p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.contact-panel {
  padding: 28px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.contact-panel .button {
  width: 100%;
}

.tel-box {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.tel-box span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.tel-box a {
  display: block;
  color: var(--blue-900);
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.2;
  font-weight: 900;
}

.contact-note {
  margin: 14px 0 0;
  color: var(--muted) !important;
  font-size: 14px;
  line-height: 1.7;
}

.company {
  text-align: center;
}

.company-banner {
  display: inline-block;
  width: min(560px, 100%);
  margin-top: 22px;
}

.company-banner img {
  margin: 0 auto;
  box-shadow: 0 12px 30px rgba(8, 41, 126, 0.12);
}

.footer {
  padding: 24px 20px;
  text-align: center;
  color: #fff;
  background: var(--blue-950);
}

.mobile-fixed-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes planeFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  50% {
    transform: translate3d(10px, -10px, 0) rotate(3deg);
  }
}

@keyframes planeGlide {
  0%, 100% {
    transform: translateX(-10px) rotate(-8deg);
  }
  50% {
    transform: translateX(10px) rotate(6deg);
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero-inner,
  .intro-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .target-grid,
  .example-grid,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ba-stage {
    grid-template-columns: 1fr;
  }

  .ba-transform {
    min-height: 220px;
  }

  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 72px;
  }

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

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero-inner {
    padding-top: 42px;
  }

  .lead {
    font-size: 16px;
  }

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

  .hero-visual {
    padding: 18px;
  }

  .conversion-node {
    min-height: 124px;
    padding: 20px;
  }

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

  .timeline.conventional,
  .timeline.flying,
  .target-grid,
  .example-grid,
  .plan-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .timeline li:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -16px;
    transform: translateX(-50%) rotate(90deg);
  }

  .section-cta .button {
    width: 100%;
  }

  .chips span {
    flex: 1 1 140px;
  }

  .intro-body,
  .ba-column,
  .example-card,
  .plan-grid article,
  .contact-panel {
    padding: 22px;
  }

  .mobile-fixed-cta {
    position: fixed;
    z-index: 40;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--red), var(--orange));
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(233, 39, 23, 0.28);
  }
}

@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;
  }
}
