@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap");

:root {
  --ink: #17231f;
  --paper: #f6f1e8;
  --paper-deep: #ece4d7;
  --lime: #c8f25f;
  --coral: #ff806b;
  --violet: #a68aff;
  --line: rgba(23, 35, 31, 0.18);
  --serif: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --sans: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  background-image:
    linear-gradient(rgba(23, 35, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 35, 31, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  font-family: var(--sans);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

body::before {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(23, 35, 31, 0.2);
  pointer-events: none;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 8px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  right: clamp(14px, 2vw, 28px);
  left: clamp(14px, 2vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border: 1px solid rgba(23, 35, 31, 0.16);
  border-radius: 99px;
  background: rgba(246, 241, 232, 0.78);
  box-shadow: 0 12px 40px rgba(23, 35, 31, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 45% 55%;
  background: var(--coral);
  box-shadow: 7px 5px 0 -3px var(--lime);
  transform: rotate(-18deg);
}

nav {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav a,
.footer-links a {
  border-bottom: 1px solid transparent;
}

nav a:hover,
.footer-links a:hover {
  border-color: currentColor;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: 180px clamp(24px, 8vw, 128px) 90px;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero h1 {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 7.3vw, 7rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.hero-line > span {
  display: block;
  transform: translateY(110%);
  animation: title-rise 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line:nth-child(2) > span {
  animation-delay: 0.12s;
}

.hero-line:nth-child(3) > span {
  animation-delay: 0.24s;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: quiet-rise 0.8s 0.55s ease forwards;
}

.hero-copy.hero-reveal {
  animation-delay: 0.68s;
}

.round-link.hero-reveal {
  margin-top: 34px;
  animation-delay: 0.88s;
}

.hero-index {
  position: absolute;
  top: 120px;
  right: clamp(24px, 5vw, 80px);
  font-family: var(--serif);
  font-size: 0.74rem;
  font-style: normal;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
  text-align: right;
}

.hero h1 em {
  position: relative;
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: -0.05em;
  bottom: 0.05em;
  left: -0.02em;
  height: 0.22em;
  content: "";
  border-radius: 100%;
  background: var(--lime);
  transform: rotate(-2deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 42px 0 0;
  font-size: clamp(0.82rem, 1.15vw, 0.98rem);
  line-height: 2.05;
}

.hero-copy span {
  display: block;
}

.round-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.round-link span {
  font-size: 1.2rem;
}

.hero-orbit {
  position: absolute;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.orbit-one {
  top: 120px;
  right: -90px;
  width: 390px;
  height: 390px;
  animation: orbit-float 9s ease-in-out infinite alternate;
}

.orbit-one::after {
  position: absolute;
  top: 45px;
  left: 35px;
  width: 58px;
  height: 58px;
  content: "";
  border-radius: 45% 55% 58% 42%;
  background: var(--coral);
}

.orbit-two {
  right: 110px;
  bottom: -170px;
  width: 390px;
  height: 390px;
  border-color: var(--violet);
  border-width: 70px;
  opacity: 0.55;
  animation: orbit-float 12s 0.8s ease-in-out infinite alternate-reverse;
}

.hero-stamp {
  position: absolute;
  right: clamp(35px, 11vw, 170px);
  bottom: 58px;
  display: grid;
  width: 126px;
  height: 126px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  place-items: center;
}

.hero-stamp span {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 8px;
  border-radius: inherit;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-align: center;
  animation: stamp-spin 18s linear infinite;
}

.hero-stamp b {
  font-family: var(--serif);
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
}

.scroll-progress {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
}

.pointer-glow {
  position: fixed;
  z-index: 40;
  top: -160px;
  left: -160px;
  width: 320px;
  height: 320px;
  opacity: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 242, 95, 0.22), transparent 68%);
  transition: opacity 0.25s ease;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.apps-section {
  padding: 150px clamp(22px, 6vw, 92px) 80px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  max-width: 1180px;
  margin: 0 auto 72px;
}

.section-heading h2,
.about-section h2,
.closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.app-card {
  --card-drift: 0px;
  display: grid;
  max-width: 1180px;
  min-height: min(660px, calc(100svh - 120px));
  margin: 0 auto 18vh;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 38px;
  background: var(--paper);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 24px 70px rgba(23, 35, 31, 0.11);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  transform: translateY(var(--card-drift));
  transition: box-shadow 0.35s ease;
}

.app-card:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 34px 90px rgba(23, 35, 31, 0.17);
}

.app-card:nth-of-type(3) .app-visual {
  order: 2;
}

.app-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  transform: perspective(1000px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 0.22s ease-out;
  transform-style: preserve-3d;
}

.app-card--steps .app-visual {
  background: var(--lime);
}

.app-card--cat .app-visual {
  background: var(--coral);
}

.app-card--law .app-visual {
  color: var(--paper);
  background: var(--ink);
}

.app-content {
  display: flex;
  padding: clamp(38px, 6vw, 82px);
  flex-direction: column;
  justify-content: center;
}

.app-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.app-number {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: normal;
  font-variant-numeric: tabular-nums;
}

.status {
  padding: 6px 12px;
  border: 1px solid var(--ink);
  border-radius: 99px;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status--building {
  color: var(--paper);
  background: var(--ink);
}

.app-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.app-content h3 small {
  margin-left: 0.4em;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.app-tagline {
  margin: 22px 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
}

.app-content > p:not(.app-tagline) {
  margin: 0;
  color: rgba(23, 35, 31, 0.72);
}

.feature-list {
  display: grid;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  gap: 8px;
}

.feature-list li::before {
  margin-right: 10px;
  content: "●";
  color: var(--coral);
  font-size: 0.55em;
  vertical-align: 0.2em;
}

.app-card--cat .feature-list li::before {
  color: var(--violet);
}

.app-card--law .feature-list li::before {
  color: var(--lime);
}

.coming-link {
  display: inline-flex;
  width: fit-content;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
}

.steps-art {
  position: relative;
  display: flex;
  width: min(420px, 78%);
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
}

.steps-art span {
  transform: translateZ(24px);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-card:hover .steps-art span:nth-child(1) {
  transform: translate3d(0, -8px, 24px);
}

.app-card:hover .steps-art span:nth-child(2) {
  transform: translate3d(0, -18px, 24px);
}

.app-card:hover .steps-art span:nth-child(3) {
  transform: translate3d(0, -30px, 24px);
}

.steps-art span {
  display: grid;
  width: 28%;
  border: 1px solid var(--ink);
  border-radius: 18px 18px 0 0;
  background: var(--paper);
  place-items: center;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-style: normal;
  font-variant-numeric: tabular-nums;
}

.steps-art span:nth-child(1) {
  height: 120px;
}

.steps-art span:nth-child(2) {
  height: 190px;
}

.steps-art span:nth-child(3) {
  height: 270px;
}

.steps-art i {
  position: absolute;
  top: -42px;
  right: 16px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--coral);
}

.cat-art {
  position: relative;
  width: min(380px, 80%);
  height: 330px;
}

.app-card:hover .cat-head {
  animation: cat-nod 0.7s ease-in-out infinite alternate;
}

.app-card:hover .cat-tail {
  animation: tail-wave 0.7s ease-in-out infinite alternate;
}

.cat-head {
  position: absolute;
  z-index: 3;
  top: 48px;
  left: 92px;
  width: 130px;
  height: 118px;
  border: 2px solid var(--ink);
  border-radius: 46% 50% 48% 52%;
  background: var(--paper);
}

.ear {
  position: absolute;
  z-index: -1;
  top: -24px;
  width: 54px;
  height: 62px;
  border: 2px solid var(--ink);
  background: var(--paper);
  transform: rotate(45deg);
}

.ear-left {
  left: 3px;
  border-radius: 10px 80% 10px 70%;
}

.ear-right {
  right: 3px;
  border-radius: 80% 10px 70% 10px;
}

.eye {
  position: absolute;
  top: 52px;
  width: 8px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink);
}

.eye-left {
  left: 40px;
}

.eye-right {
  right: 40px;
}

.cat-head b {
  position: absolute;
  right: 59px;
  bottom: 30px;
  width: 10px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.cat-body {
  position: absolute;
  z-index: 2;
  top: 136px;
  left: 158px;
  width: 124px;
  height: 116px;
  border: 2px solid var(--ink);
  border-radius: 42% 54% 45% 38%;
  background: var(--paper);
  transform: rotate(8deg);
}

.cat-tail {
  position: absolute;
  z-index: 1;
  top: 134px;
  right: 44px;
  width: 100px;
  height: 80px;
  border-top: 22px solid var(--ink);
  border-radius: 50%;
  transform: rotate(20deg);
}

.time-track {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 9px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 99px;
}

.time-track span {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--violet);
}

.law-art {
  position: relative;
  width: min(370px, 76%);
  aspect-ratio: 0.78;
  padding: 44px;
  border: 1px solid var(--paper);
  border-radius: 10px;
}

.law-symbol {
  display: block;
  margin-bottom: 34px;
  color: var(--lime);
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
}

.law-line {
  display: block;
  width: 100%;
  height: 1px;
  margin: 20px 0;
  background: rgba(246, 241, 232, 0.65);
}

.law-line--short {
  width: 62%;
}

.law-note {
  position: absolute;
  right: -26px;
  bottom: 54px;
  padding: 18px 26px;
  color: var(--ink);
  background: var(--violet);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  transform: rotate(-6deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-card:hover .law-note {
  transform: rotate(1deg) translate(-14px, -12px);
}

.cat-walk {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--violet);
}

.cat-walk__text {
  position: absolute;
  top: 50%;
  display: flex;
  width: max-content;
  color: rgba(23, 35, 31, 0.16);
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 9rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(-50%);
  animation: marquee 22s linear infinite;
}

.walking-cat {
  position: absolute;
  z-index: 2;
  right: 14%;
  bottom: 34px;
  width: 120px;
  height: 98px;
  border: 2px solid var(--ink);
  border-radius: 45% 50% 46% 52%;
  background: var(--paper);
  animation: cat-step 0.45s ease-in-out infinite alternate;
}

.walking-cat__ear {
  position: absolute;
  z-index: -1;
  top: -21px;
  width: 45px;
  height: 48px;
  border: 2px solid var(--ink);
  background: var(--paper);
  transform: rotate(45deg);
}

.walking-cat__ear--left {
  left: 5px;
  border-radius: 8px 80% 8px 70%;
}

.walking-cat__ear--right {
  right: 5px;
  border-radius: 80% 8px 70% 8px;
}

.walking-cat__eye {
  position: absolute;
  top: 42px;
  width: 7px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
}

.walking-cat__eye--left {
  left: 37px;
}

.walking-cat__eye--right {
  right: 37px;
}

.walking-cat__tail {
  position: absolute;
  z-index: -2;
  top: 35px;
  right: -69px;
  width: 82px;
  height: 55px;
  border-top: 17px solid var(--ink);
  border-radius: 50%;
  transform-origin: 0 50%;
  animation: tail-wave 0.65s ease-in-out infinite alternate;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.9s ease,
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section {
  display: grid;
  padding: 130px clamp(24px, 8vw, 128px);
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
}

.about-copy {
  max-width: 580px;
  padding-top: 55px;
  font-size: 1.05rem;
}

.about-copy p {
  margin: 0 0 24px;
}

.closing {
  padding: 120px 24px 80px;
  overflow: hidden;
  text-align: center;
  background: var(--lime);
}

.closing > p {
  margin: 0 0 20px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.closing-mark {
  width: 110px;
  height: 110px;
  margin: 50px auto 0;
  color: var(--paper);
  border-radius: 42% 58% 46% 54%;
  background: var(--ink);
  font-family: var(--serif);
  font-size: 5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100px;
  transform: rotate(-7deg);
  animation: mark-wobble 3.2s ease-in-out infinite alternate;
}

footer {
  display: grid;
  align-items: center;
  padding: 40px clamp(22px, 5vw, 72px);
  color: var(--paper);
  background: var(--ink);
  grid-template-columns: 1fr auto 1fr;
}

.brand--footer {
  color: var(--paper);
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 0.75rem;
}

footer small {
  justify-self: end;
  color: rgba(246, 241, 232, 0.65);
  font-size: 0.7rem;
}

.subpage {
  min-height: 100vh;
  padding: 140px clamp(24px, 8vw, 128px) 100px;
}

.subpage-inner {
  max-width: 760px;
}

.subpage h1 {
  margin: 0 0 48px;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.subpage h2 {
  margin: 52px 0 14px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
}

.subpage p,
.subpage li {
  color: rgba(23, 35, 31, 0.76);
}

.subpage a:not(.brand) {
  border-bottom: 1px solid currentColor;
}

.subpage-note {
  padding: 22px 26px;
  border: 1px solid var(--ink);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.35);
}

@keyframes title-rise {
  to {
    transform: translateY(0);
  }
}

@keyframes quiet-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit-float {
  to {
    transform: translate3d(-35px, 22px, 0) rotate(8deg);
  }
}

@keyframes stamp-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  to {
    transform: translate(-50%, -50%);
  }
}

@keyframes cat-step {
  to {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes cat-nod {
  to {
    transform: translateY(5px) rotate(2deg);
  }
}

@keyframes tail-wave {
  to {
    transform: rotate(-15deg);
  }
}

@keyframes mark-wobble {
  to {
    transform: rotate(6deg) translateY(-7px);
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    padding: 11px 16px;
  }

  nav {
    gap: 16px;
  }

  nav a:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: 700px;
    padding: 160px 24px 90px;
  }

  .hero-index,
  .hero-stamp {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
    line-height: 1.24;
    letter-spacing: -0.04em;
  }

  .hero-copy {
    font-size: 0.78rem;
    line-height: 1.9;
  }

  .hero h1 em {
    white-space: normal;
  }

  .orbit-one {
    top: auto;
    right: -170px;
    bottom: -70px;
  }

  .orbit-two {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .apps-section {
    padding: 86px 18px;
  }

  .section-heading,
  .about-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 48px;
    gap: 10px;
  }

  .app-card {
    border-radius: 26px;
    grid-template-columns: 1fr;
    transform: none;
  }

  .app-card:nth-of-type(3) .app-visual {
    order: 0;
  }

  .app-visual {
    min-height: 390px;
  }

  .app-content {
    padding: 40px 28px 48px;
  }

  .steps-art {
    transform: scale(0.82);
  }

  .cat-art {
    transform: scale(0.85);
  }

  .law-art {
    width: 270px;
  }

  .about-section {
    padding: 90px 24px;
    gap: 16px;
  }

  .cat-walk {
    height: 190px;
  }

  .walking-cat {
    right: 18%;
    transform: scale(0.8);
  }

  .about-copy {
    padding-top: 16px;
  }

  footer {
    grid-template-columns: 1fr auto;
    gap: 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 6px;
    text-align: right;
  }

  footer small {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

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

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

  .hero-line > span,
  .hero-reveal,
  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .pointer-glow {
    display: none;
  }
}

/* Soft Makono theme */
:root {
  --ink: #574a43;
  --paper: #fffaf4;
  --paper-deep: #f6eee5;
  --lime: #dcebc9;
  --coral: #f5c8b7;
  --violet: #ddd5ef;
  --line: rgba(87, 74, 67, 0.1);
}

body {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 8% 10%, rgba(245, 200, 183, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(220, 235, 201, 0.3), transparent 30rem),
    radial-gradient(circle at 55% 72%, rgba(221, 213, 239, 0.2), transparent 34rem);
}

body::before {
  display: none;
}

.site-header {
  border: 0;
  background: rgba(255, 250, 244, 0.78);
  box-shadow: 0 10px 34px rgba(113, 91, 78, 0.08);
}

.brand-dot {
  background: var(--coral);
  box-shadow: 7px 5px 0 -3px var(--lime);
}

nav {
  letter-spacing: 0.06em;
  text-transform: none;
}

.hero {
  min-height: 94svh;
  border-bottom: 0;
}

.hero::after {
  position: absolute;
  right: clamp(30px, 9vw, 150px);
  bottom: 65px;
  width: 92px;
  height: 124px;
  content: "";
  border-radius: 48% 52% 46% 54%;
  background: rgba(245, 200, 183, 0.66);
  filter: blur(1px);
  transform: rotate(18deg);
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(4rem, 8.5vw, 8.5rem);
  line-height: 1.23;
  letter-spacing: -0.045em;
}

.hero-copy {
  color: rgba(87, 74, 67, 0.76);
}

.eyebrow {
  color: rgba(87, 74, 67, 0.68);
  letter-spacing: 0.1em;
}

.round-link {
  padding: 10px 20px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(113, 91, 78, 0.09);
}

.hero-orbit {
  border: 0;
  filter: blur(1px);
}

.orbit-one {
  right: -70px;
  background: rgba(220, 235, 201, 0.58);
  animation-duration: 14s;
}

.orbit-one::after {
  background: rgba(245, 200, 183, 0.75);
}

.orbit-two {
  border: 0;
  background: rgba(221, 213, 239, 0.58);
  animation-duration: 18s;
}

.scroll-progress {
  height: 3px;
}

.scroll-progress span {
  background: #e7a98f;
}

.pointer-glow {
  background: radial-gradient(circle, rgba(245, 200, 183, 0.2), transparent 68%);
}

.apps-section {
  padding-top: 110px;
}

.section-heading {
  align-items: end;
}

.app-card {
  border: 0;
  border-radius: 58px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 24px 70px rgba(113, 91, 78, 0.1);
}

.app-card:hover {
  box-shadow: 0 30px 80px rgba(113, 91, 78, 0.13);
}

.app-card:nth-of-type(2) .app-visual {
  order: 2;
}

.app-card:nth-of-type(3) .app-visual {
  order: 0;
}

.app-visual {
  min-height: 560px;
}

.app-card--steps .app-visual {
  background: #e5efd4;
}

.app-card--cat .app-visual {
  background: #f7d2c3;
}

.app-card--law .app-visual {
  color: var(--ink);
  background: #e5dff2;
}

.app-card--law .law-art {
  color: var(--ink);
  border-color: rgba(87, 74, 67, 0.48);
}

.app-card--law .law-symbol {
  color: #fffaf4;
}

.app-card--law .law-line {
  background: rgba(87, 74, 67, 0.34);
}

.status {
  border-color: rgba(87, 74, 67, 0.28);
  background: rgba(255, 255, 255, 0.35);
}

.status--building {
  color: var(--ink);
  border-color: transparent;
  background: var(--violet);
}

.app-content > p:not(.app-tagline) {
  color: rgba(87, 74, 67, 0.7);
}

.feature-list li::before,
.app-card--cat .feature-list li::before,
.app-card--law .feature-list li::before {
  color: #d99f86;
}

.coming-link {
  border-color: rgba(87, 74, 67, 0.35);
}

.steps-art span,
.cat-head,
.cat-body,
.ear,
.time-track {
  border-color: rgba(87, 74, 67, 0.72);
}

.steps-art span,
.cat-head,
.cat-body,
.ear {
  background: #fffaf4;
}

.cat-tail,
.walking-cat__tail {
  border-top-color: var(--ink);
}

.cat-walk {
  height: 220px;
  border: 0;
  border-radius: 70px;
  margin: 10px clamp(18px, 4vw, 62px) 80px;
  background: #e5dff2;
}

.cat-walk__text {
  color: rgba(87, 74, 67, 0.1);
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.walking-cat {
  border-color: rgba(87, 74, 67, 0.72);
  background: #fffaf4;
  animation-duration: 0.75s;
}

.walking-cat__ear {
  border-color: rgba(87, 74, 67, 0.72);
  background: #fffaf4;
}

.about-section {
  margin: 0 clamp(18px, 4vw, 62px) 90px;
  padding: 110px clamp(24px, 7vw, 110px);
  border: 0;
  border-radius: 70px;
  background: rgba(246, 238, 229, 0.72);
}

.closing {
  margin: 0 clamp(18px, 4vw, 62px) 46px;
  border-radius: 70px;
  background: #dcebc9;
}

.closing-mark {
  color: var(--paper);
  background: #8f7d70;
}

footer {
  color: var(--ink);
  background: transparent;
}

.brand--footer {
  color: var(--ink);
}

footer small {
  color: rgba(87, 74, 67, 0.56);
}

@media (max-width: 820px) {
  .hero {
    min-height: 860px;
    padding-top: 150px;
  }

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

  .hero::after {
    right: 20px;
    bottom: 32px;
    width: 58px;
    height: 78px;
  }

  .hero-copy span {
    display: inline;
  }

  .app-card {
    border-radius: 38px;
  }

  .app-card:nth-of-type(2) .app-visual,
  .app-card:nth-of-type(3) .app-visual {
    order: 0;
  }

  .app-visual {
    min-height: 390px;
  }

  .cat-walk,
  .about-section,
  .closing {
    border-radius: 42px;
  }

  .about-section {
    margin-bottom: 60px;
  }
}
