:root {
  --bg: #fbfbff;
  --paper: rgba(255, 255, 255, 0.82);
  --ink: #12131a;
  --muted: #61616b;
  --line: rgba(20, 20, 30, 0.08);
  --lime: #dfff00;
  --pink: #ff64b7;
  --purple: #935cff;
  --cyan: #16d8d2;
  --orange: #ffb54a;
  --shadow: 0 22px 70px rgba(63, 51, 92, 0.12);
  --radius: 8px;
  --display: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --script: "Segoe Script", "Bradley Hand", "Comic Sans MS", cursive;
  --jp: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 2% 10%, rgba(147, 92, 255, 0.22) 0 80px, transparent 150px),
    radial-gradient(circle at 97% 74%, rgba(255, 100, 183, 0.12) 0 108px, transparent 190px),
    linear-gradient(110deg, rgba(223, 255, 0, 0.1) 0 9%, transparent 9% 82%, rgba(255, 180, 74, 0.1) 82%),
    var(--bg);
  font-family: var(--jp);
  line-height: 1.78;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: -24% -16%;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(223, 255, 0, 0.18), transparent 18%),
    radial-gradient(circle at 76% 16%, rgba(22, 216, 210, 0.14), transparent 20%),
    radial-gradient(circle at 58% 82%, rgba(255, 100, 183, 0.14), transparent 22%);
  content: "";
  filter: blur(8px);
  opacity: 0.9;
  animation: backgroundDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.cursor-spotlight {
  position: fixed;
  top: var(--cursor-y, 50%);
  left: var(--cursor-x, 50%);
  z-index: 3;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(223, 255, 0, 0.24), rgba(255, 100, 183, 0.11) 48%, transparent 70%);
  border-radius: 50%;
  mix-blend-mode: multiply;
  opacity: var(--spotlight-opacity, 0);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: var(--progress, 0%);
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--pink), var(--purple), var(--cyan));
  background-size: 220% 100%;
  animation: progressFlow 4s linear infinite;
  transition: width 90ms linear;
}

.container {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  width: min(1080px, calc(100% - 48px));
  transform: translateX(-50%);
  animation: headerDrop 680ms cubic-bezier(0.18, 0.82, 0.22, 1) both;
  transition: padding 220ms ease, background 220ms ease, box-shadow 220ms ease, border-radius 220ms ease;
}

.has-scrolled .site-header {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(65, 54, 92, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.amp {
  color: var(--lime);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  animation: ampPulse 3.8s ease-in-out infinite;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}

.brand-sub {
  display: inline-block;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 46px);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
}

.nav-links a {
  position: relative;
  padding: 9px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  background: var(--lime);
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.contact-pill,
.cta-button,
.mini-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  font-weight: 900;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 220ms cubic-bezier(0.18, 0.82, 0.22, 1),
    box-shadow 220ms ease,
    filter 220ms ease;
}

.contact-pill::before,
.cta-button::before,
.mini-button::before {
  position: absolute;
  inset: -70% auto -70% -60%;
  width: 54%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  content: "";
  transform: translateX(-20%) rotate(18deg);
  transition: transform 520ms cubic-bezier(0.18, 0.82, 0.22, 1);
}

.contact-pill:hover,
.cta-button:hover,
.mini-button:hover {
  box-shadow: 0 18px 38px rgba(18, 19, 26, 0.2);
  filter: saturate(1.08);
}

.contact-pill:hover::before,
.cta-button:hover::before,
.mini-button:hover::before {
  transform: translateX(330%) rotate(18deg);
}

.contact-pill {
  min-width: 116px;
  min-height: 42px;
  padding: 8px 10px 8px 18px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 20px rgba(18, 19, 26, 0.18);
  font-family: var(--display);
  font-size: 0.76rem;
}

.contact-pill span,
.cta-button span,
.mini-button span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.contact-pill:hover span,
.cta-button:hover span,
.mini-button:hover span {
  transform: translateX(2px) scale(1.06);
}

.hero {
  position: relative;
  min-height: clamp(650px, 80vh, 960px);
  padding: 100px 0 40px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

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

.hero h1 {
  margin: 0;
  max-width: 560px;
  font-family: var(--script);
  font-size: 5rem;
  font-weight: 500;
  line-height: 0.9;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  position: relative;
  margin-top: 16px;
  color: var(--lime);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 13px;
}

.hero-copy.is-visible h1 span,
.hero-copy.is-visible h1 em {
  animation: titleSweep 760ms cubic-bezier(0.18, 0.82, 0.22, 1) both;
}

.hero-copy.is-visible h1 span:nth-child(2) {
  animation-delay: 110ms;
}

.hero-copy.is-visible h1 em {
  animation-delay: 220ms;
}

.hero-ja {
  margin: 34px 0 0;
  font-size: 1.08rem;
  font-weight: 900;
}

.hero-text {
  width: min(420px, 100%);
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.cta-button {
  min-height: 46px;
  margin-top: 24px;
  padding: 7px 7px 7px 24px;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 11px 25px rgba(177, 199, 0, 0.32);
  font-size: 0.92rem;
}

.cta-button.dark {
  margin-top: 0;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 19, 26, 0.2);
}

.hero-collage {
  position: relative;
  min-height: 500px;
}

.photo-wrap {
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.photo-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.46) 45%, transparent 68%);
  content: "";
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 240ms ease, transform 700ms cubic-bezier(0.18, 0.82, 0.22, 1);
}

.photo-wrap img {
  transition: transform 700ms cubic-bezier(0.18, 0.82, 0.22, 1);
}

.photo-wrap:hover::after {
  opacity: 1;
  transform: translateX(100%);
}

.photo-wrap:hover img {
  transform: scale(1.055);
}

.hero-office {
  position: absolute;
  top: 48px;
  right: 28px;
  width: min(410px, 86%);
  height: 280px;
  animation: floatY 7.4s ease-in-out infinite;
}

.hero-phone {
  position: absolute;
  right: 34px;
  bottom: 58px;
  width: 204px;
  height: 132px;
  animation: phoneFloat 6.2s ease-in-out infinite;
}

.mask-blob-xl {
  border-radius: 33% 67% 58% 42% / 48% 38% 62% 52%;
  clip-path: polygon(5% 21%, 23% 5%, 56% 0, 86% 9%, 100% 38%, 90% 78%, 61% 100%, 24% 93%, 0 68%);
}

.mask-blob-sm {
  border-radius: 62% 38% 54% 46% / 42% 58% 36% 64%;
  clip-path: polygon(11% 8%, 80% 0, 100% 38%, 87% 88%, 33% 100%, 0 64%);
  transform: rotate(-8deg);
}

.pink-orb {
  position: absolute;
  left: 42px;
  bottom: 138px;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  background: radial-gradient(circle at 38% 26%, #ff9bd0, var(--pink));
  color: #fff;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
  animation: orbPulse 5.8s ease-in-out infinite;
}

.scroll-note {
  position: absolute;
  right: -16px;
  top: 290px;
  writing-mode: vertical-rl;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
}

.scroll-note::after {
  display: block;
  width: 1px;
  height: 74px;
  margin: 12px auto 0;
  background: var(--ink);
  content: "";
  opacity: 0.45;
  animation: scrollLine 1.8s ease-in-out infinite;
}

.section {
  padding: 58px 0;
  position: relative;
}

.service-section {
  margin-top: 0px;
  padding-top: 25px;
  z-index: 2;
}

.service-layout {
  align-items: start;
}

.service-layout,
.plan-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 56px;
  align-items: center;
}

.service-layout {
  grid-template-columns: 0.82fr 1.18fr;
}

.eyebrow {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 900;
}

.purple {
  color: var(--purple);
}

.pink {
  color: var(--pink);
}

.cyan {
  color: var(--cyan);
}

.lime {
  color: #b6d900;
}

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

h2,
h3 {
  margin: 0;
  line-height: 1.24;
}

h2 {
  font-size: 2.9rem;
  font-weight: 900;
}

#service-title {
  word-break: keep-all;
  overflow-wrap: normal;
}

h3 {
  font-size: 1rem;
  font-weight: 900;
}

.section-copy p:not(.eyebrow),
.plan-copy p {
  max-width: 380px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.wave {
  display: block;
  width: 140px;
  height: 16px;
  margin-top: 18px;
  background:
    radial-gradient(circle at 8px 8px, transparent 7px, currentColor 8px, currentColor 9px, transparent 10px)
    0 0 / 24px 14px repeat-x;
  animation: waveSlide 2.8s linear infinite;
}

.purple-wave {
  color: var(--purple);
}

.pink-wave {
  color: var(--pink);
}

.cyan-wave {
  color: var(--cyan);
}

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

.service-card,
.price-card {
  --lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 210px;
  padding: 28px 24px 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(65, 54, 92, 0.08);
  overflow: hidden;
  transform: translateY(var(--lift)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    transform 240ms cubic-bezier(0.18, 0.82, 0.22, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.service-card::before,
.price-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 42%, rgba(223, 255, 0, 0.18));
  content: "";
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.service-card:hover,
.price-card:hover,
.work-card:hover,
.strength-card:hover {
  --lift: -7px;
  box-shadow: 0 28px 72px rgba(65, 54, 92, 0.13);
}

.service-card:hover::before,
.price-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  transition: transform 260ms cubic-bezier(0.18, 0.82, 0.22, 1), filter 260ms ease;
}

.service-card:hover .service-icon {
  filter: drop-shadow(0 10px 16px rgba(147, 92, 255, 0.18));
  transform: translateY(-4px) rotate(-3deg) scale(1.06);
}

.service-card:hover .rocket-icon {
  transform: translateY(-4px) rotate(-35deg) scale(1.06);
}

.pyramid {
  background: var(--lime);
  clip-path: polygon(50% 0, 78% 42%, 66% 42%, 100% 100%, 0 100%, 34% 42%, 22% 42%);
}

.phone-icon {
  border: 7px solid var(--purple);
  border-radius: 12px;
  box-shadow: inset 0 -8px 0 rgba(147, 92, 255, 0.2);
}

.rocket-icon {
  position: relative;
  border: 4px solid var(--cyan);
  border-radius: 50%;
  transform: rotate(-35deg);
}

.rocket-icon::before,
.rocket-icon::after {
  position: absolute;
  background: var(--cyan);
  content: "";
}

.rocket-icon::before {
  top: 25px;
  left: -16px;
  width: 88px;
  height: 4px;
}

.rocket-icon::after {
  top: -12px;
  left: 25px;
  width: 4px;
  height: 82px;
}

.card-label,
.plan-name {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.violet {
  color: var(--purple);
}

.service-card p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.service-card h3 {
  text-align: center;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 32px;
}

.slider-buttons {
  display: flex;
  gap: 16px;
}

.slider-buttons span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(65, 54, 92, 0.12);
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.slider-buttons span:hover {
  transform: translateY(-3px) rotate(-6deg);
  box-shadow: 0 18px 34px rgba(65, 54, 92, 0.16);
}

.slider-buttons span:last-child {
  background: var(--lime);
}

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

.work-card {
  --lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: translateY(var(--lift)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 240ms cubic-bezier(0.18, 0.82, 0.22, 1), filter 240ms ease;
}

.work-image {
  position: relative;
  height: 126px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 46px rgba(65, 54, 92, 0.1);
  transition: box-shadow 240ms ease, filter 240ms ease;
}

.work-card:hover .work-image {
  box-shadow: 0 22px 54px rgba(65, 54, 92, 0.16);
  filter: saturate(1.08);
}

.mask-soft-a {
  border-radius: 31% 69% 43% 57% / 57% 38% 62% 43%;
  clip-path: polygon(4% 18%, 34% 0, 84% 7%, 100% 45%, 85% 92%, 28% 100%, 0 71%);
}

.mask-soft-b {
  border-radius: 66% 34% 49% 51% / 44% 62% 38% 56%;
  clip-path: polygon(13% 0, 72% 4%, 98% 27%, 90% 82%, 48% 100%, 6% 88%, 0 32%);
}

.mask-soft-c {
  border-radius: 43% 57% 36% 64% / 61% 42% 58% 39%;
  clip-path: polygon(0 8%, 62% 0, 100% 19%, 95% 75%, 67% 100%, 18% 91%, 4% 46%);
}

.mask-soft-d {
  border-radius: 54% 46% 65% 35% / 38% 55% 45% 62%;
  clip-path: polygon(10% 5%, 51% 0, 92% 13%, 100% 59%, 73% 100%, 24% 92%, 0 56%);
}

.work-card span {
  display: inline-block;
  margin: -14px 0 12px 22px;
  padding: 5px 13px;
  background: var(--pink);
  color: #fff;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 900;
  position: relative;
  z-index: 2;
  transition: transform 220ms ease;
}

.work-card:hover span {
  transform: translateX(8px) rotate(-2deg);
}

.work-card h3,
.work-card p {
  padding: 0 16px;
}

.work-card p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.compact {
  margin-bottom: 28px;
}

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

.strength-image {
  position: relative;
  height: 138px;
  margin-bottom: 18px;
  overflow: visible;
}

.strength-image img {
  border-radius: 48% 52% 38% 62% / 47% 39% 61% 53%;
  box-shadow: 0 18px 48px rgba(65, 54, 92, 0.1);
  transition: transform 520ms cubic-bezier(0.18, 0.82, 0.22, 1), filter 240ms ease;
}

.strength-card:nth-child(1) .strength-image img {
  border-radius: 59% 41% 36% 64% / 45% 55% 45% 55%;
  clip-path: polygon(6% 18%, 31% 1%, 78% 8%, 100% 37%, 86% 83%, 46% 100%, 7% 75%);
}

.strength-card:nth-child(2) .strength-image img {
  border-radius: 35% 65% 56% 44% / 58% 42% 58% 42%;
  clip-path: polygon(16% 0, 82% 10%, 100% 51%, 70% 100%, 22% 88%, 0 37%);
}

.strength-card:nth-child(3) .strength-image img {
  border-radius: 63% 37% 42% 58% / 40% 61% 39% 60%;
  clip-path: polygon(2% 33%, 29% 0, 74% 8%, 100% 32%, 93% 81%, 53% 100%, 10% 77%);
}

.strength-card:nth-child(4) .strength-image img {
  border-radius: 42% 58% 65% 35% / 55% 34% 66% 45%;
  clip-path: polygon(9% 6%, 61% 0, 96% 21%, 100% 67%, 57% 100%, 16% 91%, 0 45%);
}

.badge {
  position: absolute;
  top: 10px;
  right: 0;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 900;
  animation: badgeFloat 4.2s ease-in-out infinite;
  box-shadow: 0 14px 28px rgba(65, 54, 92, 0.14);
}

.strength-card {
  --lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: translateY(var(--lift)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 240ms cubic-bezier(0.18, 0.82, 0.22, 1);
}

.strength-card:hover .strength-image img {
  transform: scale(1.04) rotate(1deg);
}

.strength-card:nth-child(2) .badge {
  animation-delay: -1.1s;
}

.strength-card:nth-child(3) .badge {
  animation-delay: -2.1s;
}

.strength-card:nth-child(4) .badge {
  animation-delay: -3s;
}

.lime-badge {
  background: var(--lime);
  color: var(--ink);
}

.violet-badge {
  background: var(--purple);
}

.cyan-badge {
  background: var(--cyan);
  color: var(--ink);
}

.pink-badge {
  background: var(--pink);
}

.strength-card h3 {
  margin-top: 0;
}

.strength-card p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.plan-section {
  background: radial-gradient(circle at 5% 18%, rgba(147, 92, 255, 0.1), transparent 180px);
}

.plan-layout {
  grid-template-columns: 0.47fr 1.53fr;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 268px;
  padding-top: 42px;
}

.price-card.featured {
  border-top: 0;
}

.ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, var(--purple), #b46dff, var(--pink), var(--purple));
  background-size: 220% 100%;
  color: #fff;
  border-radius: 26px 26px 0 0;
  font-weight: 900;
  animation: ribbonFlow 4.2s linear infinite;
}

.price-card .plan-name {
  text-align: left;
}

.price-card h3 {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 700;
}

.price-card.featured h3 {
  color: var(--purple);
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  font-size: 0.82rem;
  font-weight: 800;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.5em;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "✓";
  font-size: 0.58rem;
  line-height: 1;
}

.mini-button {
  min-height: 40px;
  margin-top: auto;
  padding: 6px 6px 6px 20px;
  font-size: 0.82rem;
}

.lime-button {
  background: var(--lime);
}

.violet-button {
  background: var(--purple);
  color: #fff;
}

.cyan-button {
  background: var(--cyan);
}

.faq-layout {
  align-items: start;
}

.faq-photo {
  width: min(300px, 100%);
  height: 128px;
  margin-top: 24px;
}

.mask-faq {
  border-radius: 34% 66% 45% 55% / 58% 39% 61% 42%;
  clip-path: polygon(3% 12%, 39% 0, 86% 8%, 100% 45%, 78% 92%, 28% 100%, 0 70%);
}

.faq-list {
  display: grid;
  gap: 0;
  padding-top: 18px;
}

details {
  border-bottom: 1px solid var(--line);
  transition: border-color 200ms ease, background 200ms ease;
}

details:hover {
  border-color: rgba(147, 92, 255, 0.22);
  background: rgba(255, 255, 255, 0.34);
}

summary {
  position: relative;
  cursor: pointer;
  padding: 22px 54px 20px 36px;
  font-weight: 900;
  list-style: none;
  transition: color 180ms ease, transform 180ms ease;
}

summary:hover {
  color: var(--purple);
  transform: translateX(4px);
}

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

summary::before {
  position: absolute;
  top: 22px;
  left: 0;
  content: "Q";
  font-family: var(--display);
  font-weight: 900;
}

summary::after {
  position: absolute;
  right: 0;
  top: 17px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-family: var(--display);
  font-size: 1.35rem;
  transition: transform 220ms ease, background 180ms ease, border-color 180ms ease;
}

details[open] summary::after {
  background: var(--lime);
  content: "−";
  transform: rotate(180deg);
}

details p {
  margin: 0;
  padding: 0 54px 18px 36px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

details[open] p {
  animation: faqDrop 260ms ease both;
}

.contact-section {
  padding: 38px 0 104px;
}

.contact-blob {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(270px, 0.86fr) minmax(280px, 0.78fr);
  grid-template-areas: "heading copy art";
  align-items: center;
  min-height: 222px;
  gap: 28px;
  padding: 100px 70px;
  background: linear-gradient(105deg, var(--lime), #ffd65e 33%, var(--pink) 62%, var(--purple));
  background-size: 180% 180%;
  border-radius: 46% 54% 44% 56% / 58% 42% 58% 42%;
  box-shadow: 0 24px 70px rgba(147, 92, 255, 0.18);
  animation: ctaMorph 9s ease-in-out infinite, gradientPan 7s ease-in-out infinite alternate;
  overflow: hidden;
}

.contact-blob::before {
  position: absolute;
  inset: -40% auto auto 54%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 64%);
  content: "";
  animation: haloDrift 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.contact-heading {
  grid-area: heading;
  position: relative;
  z-index: 2;
}

.contact-blob h2 {
  font-family: var(--script);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.05;
}

.contact-copy {
  position: relative;
  z-index: 3;
  display: flex;
  grid-area: copy;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.contact-blob p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 900;
}

.contact-blob .cta-button {
  position: relative;
  align-self: start;
  justify-self: start;
  margin-top: 0;
  z-index: 3;
}

.contact-art {
  position: relative;
  grid-area: art;
  min-height: 162px;
  z-index: 2;
}

.contact-meeting {
  position: absolute;
  right: 96px;
  bottom: 6px;
  width: 176px;
  height: 112px;
  z-index: 1;
  animation: floatY 6.8s ease-in-out infinite;
}

.contact-plant {
  position: absolute;
  right: 0;
  top: 8px;
  width: 96px;
  height: 106px;
  z-index: 1;
  animation: plantFloat 5.8s ease-in-out infinite;
}

.mask-contact-a {
  border-radius: 58% 42% 47% 53% / 45% 60% 40% 55%;
  clip-path: polygon(11% 4%, 75% 0, 100% 36%, 88% 88%, 35% 100%, 0 63%);
}

.mask-contact-b {
  border-radius: 39% 61% 60% 40% / 54% 40% 60% 46%;
  clip-path: polygon(16% 0, 90% 10%, 100% 70%, 52% 100%, 0 79%, 4% 21%);
}

.site-footer {
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 900;
}

.decor,
.mini-line,
.scribble {
  position: absolute;
  pointer-events: none;
}

.decor-purple {
  top: 86px;
  left: -50px;
  width: 188px;
  height: 150px;
  background: radial-gradient(circle at 60% 45%, rgba(147, 92, 255, 0.48), rgba(147, 92, 255, 0.12));
  border-radius: 52% 48% 44% 56% / 42% 45% 55% 58%;
  animation: blobMorph 8s ease-in-out infinite;
}

.decor-lime-one {
  top: 86px;
  right: 47%;
  width: 54px;
  height: 36px;
  background: var(--lime);
  border-radius: 60% 40% 48% 52% / 50%;
  transform: rotate(-28deg);
  animation: softBlink 4.4s ease-in-out infinite;
}

.decor-lime-two {
  top: 4px;
  right: 62px;
  width: 56px;
  height: 56px;
  background: var(--lime);
  border-radius: 50%;
  animation: orbPulse 5.2s ease-in-out infinite;
}

.scribble {
  width: 92px;
  height: 24px;
  border-bottom: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(8deg);
  animation: scribbleWiggle 3.4s ease-in-out infinite;
}

.scribble-hero {
  right: 112px;
  bottom: 30px;
}

.mini-line {
  width: 42px;
  height: 42px;
  border-top: 3px solid var(--lime);
  border-left: 3px solid var(--lime);
  animation: sparkleTick 2.8s ease-in-out infinite;
}

.line-a {
  --line-rotate: 24deg;
  right: 14px;
  top: 166px;
  transform: rotate(24deg);
}

.line-b {
  --line-rotate: 214deg;
  left: 178px;
  bottom: 78px;
  transform: rotate(214deg);
}

[data-reveal] {
  --reveal-y: 28px;
  opacity: 0;
  transform: translateY(var(--reveal-y)) scale(0.985);
  transition:
    opacity 720ms ease var(--reveal-delay, 0ms),
    transform 720ms cubic-bezier(0.18, 0.82, 0.22, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  --reveal-y: 0px;
  opacity: 1;
  transform: translateY(0) scale(1);
}

#service .section-copy[data-reveal] {
  opacity: 1;
  transform: none;
}

.service-card[data-reveal],
.price-card[data-reveal],
.work-card[data-reveal],
.strength-card[data-reveal] {
  transform:
    translateY(calc(var(--reveal-y, 0px) + var(--lift, 0px)))
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    scale(var(--reveal-scale, 0.985));
}

.service-card[data-reveal].is-visible,
.price-card[data-reveal].is-visible,
.work-card[data-reveal].is-visible,
.strength-card[data-reveal].is-visible {
  --reveal-scale: 1;
}

[data-float] {
  transform: translate3d(0, calc(var(--float-y, 0) * 1px), 0) rotate(calc(var(--float-y, 0) * 0.02deg));
}

.faq-list.is-visible details,
.service-cards:has(.is-visible) .service-card,
.works-grid:has(.is-visible) .work-card,
.strength-grid:has(.is-visible) .strength-card,
.price-grid:has(.is-visible) .price-card {
  animation: settlePop 640ms cubic-bezier(0.18, 0.82, 0.22, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes backgroundDrift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  100% {
    transform: translate3d(2%, 2%, 0) scale(1.05);
  }
}

@keyframes progressFlow {
  to {
    background-position: 220% 0;
  }
}

@keyframes headerDrop {
  0% {
    opacity: 0;
    transform: translate(-50%, -16px);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes ampPulse {
  50% {
    filter: drop-shadow(0 0 12px rgba(223, 255, 0, 0.52));
    transform: rotate(-6deg) scale(1.08);
  }
}

@keyframes titleSweep {
  0% {
    opacity: 0;
    transform: translateX(-26px) rotate(-1.5deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1.2deg);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }

  50% {
    transform: translateY(12px) rotate(-4deg);
  }
}

@keyframes plantFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-3deg);
  }
}

@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0.55);
    transform-origin: top;
    opacity: 0.28;
  }

  50% {
    transform: scaleY(1);
    opacity: 0.72;
  }
}

@keyframes waveSlide {
  to {
    background-position: 24px 0;
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(7deg);
  }
}

@keyframes ribbonFlow {
  to {
    background-position: 220% 0;
  }
}

@keyframes faqDrop {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaMorph {
  0%,
  100% {
    border-radius: 46% 54% 44% 56% / 58% 42% 58% 42%;
  }

  50% {
    border-radius: 54% 46% 52% 48% / 46% 58% 42% 54%;
  }
}

@keyframes gradientPan {
  0% {
    background-position: 0 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes haloDrift {
  100% {
    transform: translate(-84px, 58px) scale(1.24);
  }
}

@keyframes blobMorph {
  0%,
  100% {
    border-radius: 52% 48% 44% 56% / 42% 45% 55% 58%;
    filter: hue-rotate(0deg);
  }

  50% {
    border-radius: 42% 58% 62% 38% / 56% 38% 62% 44%;
    filter: hue-rotate(18deg);
  }
}

@keyframes softBlink {
  50% {
    opacity: 0.58;
  }
}

@keyframes scribbleWiggle {
  50% {
    transform: rotate(2deg) scaleX(1.08);
  }
}

@keyframes sparkleTick {
  50% {
    opacity: 0.48;
    transform: rotate(var(--line-rotate, 24deg)) scale(0.86);
  }
}

@keyframes settlePop {
  0% {
    filter: saturate(0.9);
  }

  45% {
    filter: saturate(1.16);
  }

  100% {
    filter: saturate(1);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 20px;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  .hero-layout,
  .service-layout,
  .plan-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .hero h1 {
    font-size: 4.7rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .contact-blob h2 {
    font-size: 2.65rem;
  }

  .hero-collage {
    min-height: 430px;
  }

  .hero-office {
    left: 0;
    right: auto;
    width: 68%;
  }

  .hero-phone {
    right: 5%;
  }

  .pink-orb {
    left: 58%;
  }

  .service-cards,
  .price-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: 14px;
    scrollbar-width: none;
  }

  .service-cards::-webkit-scrollbar,
  .price-grid::-webkit-scrollbar {
    display: none;
  }

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

  .work-image {
    height: 170px;
  }

  .strength-image {
    height: 176px;
  }

  .price-card {
    min-height: 252px;
  }

  .contact-blob {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.74fr);
    grid-template-areas:
      "heading art"
      "copy art";
    gap: 18px 24px;
    padding: 42px 34px;
  }

  .contact-blob .cta-button {
    margin-top: 0;
  }

  .contact-art {
    min-height: 176px;
  }

  .contact-meeting {
    right: 88px;
    bottom: 12px;
    width: 158px;
    height: 100px;
  }

  .contact-plant {
    top: 14px;
    right: 4px;
    bottom: auto;
    width: 72px;
    height: 84px;
  }
}

@media (max-width: 760px) {
  .hero-layout {
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 11vw, 4.2rem);
  }

  .service-cards,
  .price-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .service-card,
  .price-card {
    min-height: auto;
  }

  .price-grid {
    gap: 18px;
  }

  .section-title-row {
    flex-wrap: wrap;
    gap: 18px;
  }

  .contact-blob {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "copy"
      "art";
    padding: 54px 34px 34px;
  }

  .contact-art {
    min-height: 158px;
    max-width: 330px;
    width: 100%;
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1080px);
  }

  .site-header {
    top: 14px;
    width: calc(100% - 30px);
    padding: 10px 0;
    gap: 12px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand-sub {
    display: none;
  }

  .amp {
    font-size: 1.62rem;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .contact-pill {
    min-width: auto;
    padding: 7px 7px 7px 14px;
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 92px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 2.92rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .contact-blob h2 {
    font-size: 2.18rem;
  }

  .hero h1 em {
    text-underline-offset: 8px;
  }

  .hero-ja {
    margin-top: 32px;
  }

  .hero-text {
    max-width: 340px;
    font-size: 0.88rem;
  }

  .hero-collage {
    min-height: 330px;
  }

  .hero-office {
    top: 34px;
    width: 88%;
    height: 226px;
  }

  .hero-phone {
    display: none;
  }

  .pink-orb {
    left: 8px;
    bottom: 42px;
    width: 94px;
    height: 94px;
    font-size: 0.68rem;
  }

  .scroll-note,
  .mini-line {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .service-section {
    margin-top: 24px;
    padding-top: 12px;
  }

  .section-title-row {
    align-items: start;
  }

  .works-grid,
  .strength-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .work-image {
    height: 176px;
  }

  .strength-card {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .strength-image {
    width: min(280px, 86%);
    height: 188px;
    margin-inline: auto;
  }

  .strength-card p {
    max-width: 320px;
  }

  .faq-photo {
    width: 82%;
  }

  summary {
    padding: 20px 48px 18px 32px;
  }

  details p {
    padding: 0 48px 18px 32px;
  }

  .contact-blob {
    border-radius: 32px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "copy"
      "art";
    gap: 14px;
    padding: 40px 24px 28px;
  }

  .contact-blob .cta-button {
    max-width: 100%;
    padding-left: 20px;
    font-size: 0.86rem;
  }

  .contact-art {
    min-height: 150px;
    margin-top: 2px;
  }

  .contact-meeting {
    right: 78px;
    bottom: 10px;
    width: 142px;
    height: 90px;
  }

  .contact-plant {
    top: 8px;
    right: 12px;
    bottom: auto;
    width: 62px;
    height: 72px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1080px);
  }

  .site-header {
    width: calc(100% - 24px);
  }

  .amp {
    font-size: 1.46rem;
  }

  .brand-name {
    font-size: 1.34rem;
  }

  .hero {
    padding-top: 84px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 3rem);
  }

  h2 {
    font-size: 1.86rem;
  }

  #service-title {
    font-size: clamp(1.78rem, 8.4vw, 1.92rem);
  }

  .hero-ja {
    font-size: 0.98rem;
  }

  .hero-text {
    font-size: 0.86rem;
  }

  .hero-collage {
    min-height: 296px;
  }

  .hero-office {
    width: 100%;
    height: 204px;
  }

  .pink-orb {
    width: 82px;
    height: 82px;
    font-size: 0.58rem;
  }

  .service-card,
  .price-card {
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .price-card {
    padding-top: 42px;
  }

  .price-card h3 {
    font-size: clamp(1.72rem, 9vw, 2rem);
  }

  .slider-buttons {
    display: none;
  }

  .work-image {
    height: 158px;
  }

  .faq-photo {
    width: 100%;
  }

  summary {
    padding-right: 42px;
    font-size: 0.92rem;
  }

  .contact-section {
    padding-bottom: 72px;
  }

  .contact-blob {
    padding: 36px 20px 26px;
  }

  .contact-blob h2 {
    font-size: 1.94rem;
  }

  .contact-copy {
    gap: 22px;
  }

  .contact-blob p {
    font-size: 0.86rem;
  }

  .contact-art {
    min-height: 132px;
  }

  .contact-meeting {
    right: 70px;
    width: 126px;
    height: 82px;
  }

  .contact-plant {
    right: 8px;
    width: 58px;
    height: 68px;
  }
}
