:root {
  color-scheme: light;
  --paper: #fffdf9;
  --ink: #111;
  --muted: #76706a;
  --red: #bc002d;
  --water: #5f8192;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  background: var(--paper);
}

body {
  color: var(--ink);
  text-rendering: geometricPrecision;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.hero {
  width: min(100%, 920px);
  min-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.scene {
  position: relative;
  width: min(86vw, 760px);
  margin-bottom: clamp(2px, 1vw, 12px);
  isolation: isolate;
}

.clouds-bg {
  position: absolute;
  z-index: -2;
  top: -3%;
  left: 50%;
  width: 92%;
  height: auto;
  color: var(--ink);
  opacity: 0.08;
  transform: translateX(-50%);
}

.mist {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.mist-left {
  opacity: 0.58;
}

.mist-right {
  opacity: 0.44;
}

.mist-short {
  stroke-width: 1.1;
  opacity: 0.28;
}

.fuji-art {
  position: relative;
  z-index: -1;
  display: block;
  width: 100%;
  height: auto;
  color: var(--ink);
}

.fuji-ridge,
.fuji-snow {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fuji-ridge {
  opacity: 0.2;
  stroke-width: 2.2;
}

.fuji-snow {
  opacity: 0.2;
  stroke-width: 1.6;
}

.copy {
  width: 100%;
}

.slogan {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 450;
  letter-spacing: 0;
  line-height: 1.5;
}

h1 {
  margin: 0;
  display: inline-block;
  font-family: "Joti One", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(68px, 12vw, 154px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.red-dot-i {
  position: relative;
  display: inline-block;
  color: transparent;
}

.red-dot-i::before,
.red-dot-i::after {
  content: "i";
  position: absolute;
  inset: 0;
  display: block;
}

.red-dot-i::before {
  color: var(--ink);
  clip-path: inset(0.3em 0 0 0);
}

.red-dot-i::after {
  z-index: 1;
  color: var(--red);
  clip-path: inset(0 0 0.68em 0);
}

.slogan {
  margin-top: 24px;
  font-size: clamp(18px, 2vw, 28px);
  color: var(--ink);
}

.foreground-art {
  display: block;
  width: min(76vw, 640px);
  height: auto;
  margin: clamp(24px, 4vw, 40px) auto 0;
  overflow: visible;
}

.stream-fill {
  fill: rgba(95, 129, 146, 0.035);
}

.stream-bank,
.stream-ripple {
  fill: none;
  stroke: var(--water);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stream-bank {
  stroke-width: 1.2;
  opacity: 0.34;
}

.stream-ripple {
  stroke-width: 0.8;
  opacity: 0.22;
}

.blossom {
  fill: rgba(188, 0, 45, 0.05);
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  opacity: 0.5;
}

.blossom circle {
  fill: var(--red);
  stroke: none;
  opacity: 0.72;
}

@media (max-width: 640px) {
  .page {
    padding: 20px;
  }

  .hero {
    min-height: calc(100vh - 40px);
  }

  .scene {
    width: min(118vw, 520px);
    margin-bottom: 4px;
  }

  .clouds-bg {
    width: 96%;
    opacity: 0.065;
  }

  .slogan {
    margin-top: 18px;
  }

  .foreground-art {
    width: min(94vw, 430px);
    margin-top: 28px;
  }
}
