:root {
  --ink: #201c1c;
  --cream: #f4f0ea;
  --paper: #fbf8f3;
  --rose: #bf6672;
  --rose-dark: #984956;
  --blush: #e9c7c5;
  --line: rgba(32, 28, 28, 0.18);
  --sans: "DM Sans", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 28px 4vw;
  border-bottom: 1px solid rgba(32, 28, 28, 0.12);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
}

.desktop-nav {
  display: flex;
  gap: 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.desktop-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--rose);
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px 12px 20px;
  border-radius: 100px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.header-cta span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: var(--ink);
  background: white;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 800px;
  overflow: hidden;
  padding-top: 86px;
  background:
    radial-gradient(circle at 72% 30%, rgba(255,255,255,.7), transparent 27%),
    linear-gradient(110deg, var(--paper) 0 44%, #e6c2c1 44% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 86px;
  left: 44%;
  width: 1px;
  height: calc(100% - 86px);
  background: rgba(32, 28, 28, 0.12);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 4vw 3vw 4vw 7vw;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 32px;
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.eyebrow span {
  display: block;
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 5vw, 80px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.hero h1 em {
  display: inline-block;
  color: var(--rose);
  font-style: normal;
  white-space: nowrap;
}

.hero-description {
  margin: 40px 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 210px;
  padding: 15px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.text-link span {
  color: var(--rose);
  font-size: 18px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 60%;
  height: 13%;
  border-radius: 50%;
  background: rgba(56, 34, 34, 0.16);
  filter: blur(26px);
}

.hero-visual > img {
  position: relative;
  z-index: 4;
  width: min(70%, 570px);
  max-height: 72%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 32px 30px rgba(80, 45, 47, 0.18));
  transform: scale(1.22);
  transform-origin: bottom center;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
}

.orbit-one {
  width: 610px;
  height: 610px;
}

.orbit-two {
  width: 770px;
  height: 770px;
}

.float-label {
  position: absolute;
  z-index: 2;
  color: rgba(100, 57, 62, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.label-touch {
  top: 24%;
  left: 13%;
}

.label-connect {
  right: 11%;
  bottom: 24%;
}

.nfc-chip {
  position: absolute;
  z-index: 5;
  top: 24%;
  right: 14%;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 100px;
  color: white;
  background: rgba(115, 63, 70, 0.24);
  backdrop-filter: blur(9px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.nfc-chip svg {
  width: 22px;
  height: 22px;
}

.nfc-chip path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.hero-note {
  position: absolute;
  z-index: 6;
  right: 4vw;
  bottom: 34px;
  display: flex;
  gap: 20px;
  color: rgba(32, 28, 28, 0.7);
}

.hero-note span {
  color: var(--rose-dark);
  font-size: 10px;
  font-weight: 700;
}

.hero-note p {
  margin: 0;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: .08em;
}

.marquee {
  overflow: hidden;
  padding: 27px 0;
  color: white;
  background: var(--ink);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
}

.marquee i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
}

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

.section {
  position: relative;
  padding: 130px 7vw;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
}

.section-index span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rose);
}

.section-index p {
  margin: 0;
}

.story {
  display: grid;
  grid-template-columns: 15% 47% 38%;
  min-height: 800px;
  background: var(--cream);
}

.story-content {
  align-self: center;
  padding-right: 4vw;
}

.kicker {
  margin: 0 0 28px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .15em;
}

.story h2,
.app h2 {
  margin: 0;
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1.25;
  letter-spacing: -.05em;
}

.story h2 span,
.app h2 span {
  color: var(--rose);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.story-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 2;
}

.story-object {
  position: relative;
  display: grid;
  place-items: center;
}

.story-disc {
  display: grid;
  place-items: end center;
  width: min(31vw, 440px);
  height: min(31vw, 440px);
  overflow: hidden;
  border-radius: 50%;
  background: var(--blush);
}

.story-disc img {
  width: 73%;
  transform: translateY(4%) scale(1.18);
  filter: drop-shadow(0 25px 25px rgba(60,35,35,.17));
}

.story-object > p {
  position: absolute;
  right: 0;
  bottom: 4%;
  margin: 0;
  color: var(--rose-dark);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .17em;
}

.features {
  padding-bottom: 150px;
  color: white;
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 22% 1fr auto;
  align-items: end;
  margin-bottom: 80px;
}

.section-index.light span {
  border-color: rgba(255,255,255,.2);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1.2;
  letter-spacing: -.05em;
}

.section-heading > p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.9;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  position: relative;
  min-height: 440px;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.15);
}

.feature-card + .feature-card {
  border-left: 0;
}

.accent-card {
  color: var(--ink);
  background: var(--rose);
}

.feature-number {
  position: absolute;
  top: 28px;
  right: 30px;
  font-size: 10px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  margin: 30px 0 54px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--rose);
  font-size: 32px;
}

.accent-card .feature-icon {
  border-color: rgba(32,28,28,.22);
  color: var(--ink);
}

.tap-icon span {
  width: 38px;
  height: 54px;
  border: 2px solid currentColor;
  border-radius: 20px 20px 8px 8px;
  transform: rotate(-15deg);
}

.feature-card h3 {
  margin: 0 0 18px;
  font-size: 25px;
}

.feature-card p {
  max-width: 330px;
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  line-height: 1.9;
}

.accent-card p {
  color: rgba(32,28,28,.7);
}

.feature-card small {
  position: absolute;
  right: 30px;
  bottom: 30px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  writing-mode: vertical-rl;
}

.app {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 900px;
  overflow: hidden;
  background: var(--paper);
}

.app-copy {
  align-self: center;
  max-width: 570px;
}

.app-copy .section-index {
  margin-bottom: 52px;
}

.app-copy > p {
  max-width: 510px;
  margin: 42px 0 50px;
  font-size: 13px;
  line-height: 2.1;
}

.app ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.app li {
  display: flex;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.app li span {
  color: var(--rose);
  font-size: 10px;
}

.phones {
  position: relative;
  align-self: center;
  height: 650px;
}

.phones::before {
  content: "";
  position: absolute;
  top: 7%;
  left: 8%;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background: var(--blush);
}

.phone {
  position: absolute;
  z-index: 2;
  width: 230px;
  height: 500px;
  overflow: hidden;
  padding: 8px;
  border-radius: 38px;
  background: #111;
  box-shadow: 0 30px 50px rgba(53, 34, 34, 0.2);
}

.phone img {
  width: 100%;
  height: 100%;
  border-radius: 31px;
  object-fit: cover;
}

.phone-back {
  top: 34px;
  left: 14%;
  transform: rotate(-9deg);
}

.phone-front {
  right: 10%;
  bottom: 22px;
  transform: rotate(7deg);
}

.phone-badge {
  position: absolute;
  z-index: 4;
  right: 2%;
  top: 9%;
  display: grid;
  place-content: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: white;
  background: var(--rose-dark);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transform: rotate(9deg);
}

.phone-badge small {
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: .17em;
}

.download {
  min-height: 640px;
  overflow: hidden;
  color: white;
  background: var(--rose-dark);
}

.download::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: radial-gradient(rgba(255,255,255,.8) .8px, transparent .8px);
  background-size: 8px 8px;
}

.download-glow {
  position: absolute;
  top: -40%;
  right: -5%;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.download-glow::before,
.download-glow::after {
  content: "";
  position: absolute;
  inset: 90px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.download-glow::after {
  inset: 190px;
}

.download-copy {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.light-text {
  color: rgba(255,255,255,.7);
}

.download h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.2;
  letter-spacing: -.055em;
}

.download-copy > p:not(.eyebrow) {
  margin: 30px 0;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}

.store-buttons {
  display: flex;
  gap: 12px;
}

.store-buttons a {
  display: flex;
  flex-direction: column;
  min-width: 174px;
  padding: 11px 20px;
  border-radius: 9px;
  color: var(--ink);
  background: white;
}

.store-buttons small {
  font-size: 8px;
}

.store-buttons strong {
  font-size: 18px;
}

.download-bear {
  position: absolute;
  z-index: 2;
  right: 5%;
  bottom: -9%;
  width: min(37vw, 520px);
  filter: drop-shadow(0 35px 35px rgba(45, 13, 19, .28));
  transform: rotate(4deg) scale(1.12);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 50px;
  padding: 70px 7vw 40px;
  background: var(--cream);
}

.footer-logo {
  align-self: start;
  font-size: 24px;
}

footer > p {
  align-self: start;
  margin: 0;
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-self: start;
  font-size: 11px;
}

footer small {
  grid-column: 1 / -1;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: rgba(32,28,28,.55);
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 22px 24px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 40px;
    padding: 10px 5px;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    width: 100%;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 15;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 80px 12vw;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .mobile-nav a {
    font-size: 10vw;
    font-weight: 700;
    letter-spacing: -.05em;
  }

  .hero {
    display: block;
    min-height: 900px;
    padding-top: 86px;
    background: linear-gradient(155deg, var(--paper) 0 47%, #e6c2c1 47%);
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    padding: 80px 24px 20px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .hero-description {
    margin: 26px 0;
  }

  .hero-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 52%;
  }

  .hero-visual > img {
    width: 65%;
    max-height: 92%;
  }

  .orbit-one {
    width: 400px;
    height: 400px;
  }

  .orbit-two {
    width: 530px;
    height: 530px;
  }

  .hero-note {
    display: none;
  }

  .section {
    padding: 90px 24px;
  }

  .story {
    display: block;
  }

  .story > .section-index {
    margin-bottom: 70px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-object {
    margin-top: 70px;
  }

  .story-disc {
    width: 82vw;
    height: 82vw;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin: 60px 0 30px;
  }

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

  .feature-card + .feature-card {
    border-top: 0;
    border-left: 1px solid rgba(255,255,255,.15);
  }

  .feature-card {
    min-height: 390px;
  }

  .app {
    display: block;
  }

  .phones {
    height: 590px;
    margin-top: 70px;
  }

  .phones::before {
    top: 8%;
    left: 50%;
    width: 430px;
    height: 430px;
    transform: translateX(-50%);
  }

  .phone {
    width: 190px;
    height: 414px;
  }

  .phone-back {
    left: 2%;
  }

  .phone-front {
    right: 1%;
  }

  .download {
    min-height: 760px;
  }

  .download-bear {
    right: -3%;
    width: min(85vw, 440px);
  }

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

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

  .marquee-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Retro pop direction */
:root {
  --ink: #783228;
  --cream: #ffe5bd;
  --paper: #fff0d4;
  --rose: #ff65ae;
  --rose-dark: #dc3c75;
  --blush: #ff9dca;
  --orange: #ff5a0a;
  --orange-soft: #ff8d21;
  --yellow: #ffe46d;
  --line: rgba(120, 50, 40, 0.24);
  --sans: "Fredoka", "Noto Sans JP", sans-serif;
  --jp: "Noto Sans JP", sans-serif;
}

body {
  background: var(--paper);
  font-family: var(--sans);
}

.site-header {
  position: absolute;
  padding: 24px 5vw;
  color: var(--paper);
  border-bottom: 2px solid rgba(255, 240, 212, 0.32);
  background: var(--orange);
}

.logo {
  font-size: 19px;
  letter-spacing: 0.07em;
}

.logo-dot {
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 228, 109, 0.22);
}

.desktop-nav {
  gap: 54px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-nav a:hover {
  color: var(--yellow);
}

.header-cta {
  color: var(--ink);
  border: 2px solid var(--ink);
  background: var(--rose);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-2deg);
}

.header-cta span {
  background: var(--paper);
}

.hero {
  grid-template-columns: 50% 50%;
  min-height: 760px;
  padding-top: 82px;
  background: linear-gradient(90deg, var(--paper) 0 50%, var(--orange-soft) 50%);
}

.hero::before {
  display: none;
}

.hero-copy {
  padding: 6vw 6vw;
}

.eyebrow {
  color: var(--rose-dark);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.eyebrow b {
  color: var(--orange);
  font-size: 20px;
}

.hero h1 {
  color: var(--orange);
  font-size: clamp(56px, 5.8vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.07em;
  text-shadow: 3px 3px 0 var(--yellow);
}

.hero h1 em {
  color: var(--rose-dark);
  text-shadow: 3px 3px 0 #fff;
}

.hero-description {
  max-width: 420px;
  font-family: var(--jp);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.text-link {
  justify-content: center;
  width: 175px;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  color: var(--ink);
  background: var(--rose);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-2deg);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.text-link:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px) rotate(-2deg);
}

.text-link span {
  margin-left: 18px;
  color: var(--ink);
}

.hero-visual {
  background:
    radial-gradient(circle at 84% 18%, var(--yellow) 0 7px, transparent 8px),
    radial-gradient(circle at 16% 22%, var(--paper) 0 5px, transparent 6px),
    var(--orange-soft);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 76%;
  height: 68%;
  background: var(--blush);
  border: 3px solid var(--ink);
  border-radius: 43% 57% 62% 38% / 42% 36% 64% 58%;
  transform: rotate(-5deg);
}

.hero-visual::after {
  width: 62%;
  height: 9%;
  background: rgba(120, 50, 40, 0.2);
}

.hero-visual > img {
  width: min(66%, 500px);
  max-height: 78%;
  transform: scale(1.13);
}

.orbit {
  z-index: 2;
  border: 2px dashed rgba(255, 240, 212, 0.7);
}

.orbit-one {
  width: 520px;
  height: 520px;
}

.orbit-two {
  display: none;
}

.float-label {
  z-index: 5;
  padding: 7px 12px;
  border-radius: 100px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 11px;
  transform: rotate(-6deg);
}

.label-connect {
  right: 8%;
  bottom: 18%;
  color: var(--paper);
  background: var(--rose-dark);
  transform: rotate(7deg);
}

.nfc-chip {
  color: var(--ink);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
}

.hero-note {
  color: var(--paper);
}

.hero-note span {
  color: var(--yellow);
}

.marquee {
  padding: 17px 0;
  color: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--rose);
}

.marquee i {
  width: 12px;
  height: 12px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0 50%, 39% 35%);
}

.story {
  grid-template-columns: 15% 45% 40%;
  background:
    radial-gradient(circle at 7% 86%, var(--rose) 0 5px, transparent 6px),
    radial-gradient(circle at 91% 10%, var(--orange) 0 7px, transparent 8px),
    var(--paper);
}

.section-index span {
  color: var(--paper);
  border: 2px solid var(--ink);
  background: var(--orange);
  box-shadow: 3px 3px 0 var(--ink);
}

.kicker {
  color: var(--rose-dark);
  font-size: 14px;
}

.story h2,
.app h2 {
  color: var(--orange);
  line-height: 1.12;
  text-shadow: 2px 2px 0 var(--yellow);
}

.story h2 span,
.app h2 span {
  color: var(--rose-dark);
}

.story-grid {
  border-top: 2px dashed var(--rose);
  font-family: var(--jp);
}

.story-disc {
  overflow: visible;
  background: var(--blush);
  border: 3px solid var(--ink);
  border-radius: 42% 58% 35% 65% / 61% 38% 62% 39%;
  transform: rotate(4deg);
  box-shadow: 12px 12px 0 var(--yellow);
}

.story-disc img {
  transform: translateY(4%) scale(1.16) rotate(-4deg);
}

.story-object > p {
  right: -2%;
  bottom: 0;
  padding: 10px 14px;
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 100px;
  background: var(--orange);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-6deg);
}

.features {
  color: var(--paper);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background:
    radial-gradient(circle at 3% 8%, var(--yellow) 0 5px, transparent 6px),
    radial-gradient(circle at 96% 93%, var(--rose) 0 7px, transparent 8px),
    var(--orange);
}

.section-index.light span {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--yellow);
}

.section-heading h2 {
  text-shadow: 3px 3px 0 var(--rose-dark);
}

.section-heading > p {
  color: var(--paper);
  font-family: var(--jp);
}

.feature-list {
  gap: 24px;
}

.feature-card {
  min-height: 420px;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 44% 56% 46% 54% / 12% 14% 10% 12%;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

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

.feature-card:nth-child(2) {
  background: var(--blush);
  transform: translateY(20px) rotate(1deg);
}

.feature-card:nth-child(3) {
  background: var(--yellow);
  transform: rotate(-1deg);
}

.feature-icon {
  width: 118px;
  height: 118px;
  color: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 50% 50% 46% 54% / 48% 48% 52% 52%;
  background: var(--rose);
  box-shadow: 5px 5px 0 var(--ink);
}

.accent-card .feature-icon {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--orange);
}

.feature-card h3 {
  color: var(--orange);
  font-size: 28px;
}

.feature-card p,
.accent-card p {
  color: var(--ink);
  font-family: var(--jp);
  font-weight: 500;
}

.app {
  background:
    linear-gradient(90deg, var(--paper) 0 50%, var(--blush) 50%);
}

.app-copy > p {
  font-family: var(--jp);
  font-weight: 500;
}

.app li {
  border-bottom: 2px dashed var(--rose);
}

.phones::before {
  background: var(--orange);
  border: 3px solid var(--ink);
  border-radius: 38% 62% 55% 45% / 58% 40% 60% 42%;
  transform: rotate(-4deg);
  box-shadow: 12px 12px 0 var(--yellow);
}

.phone {
  border: 3px solid var(--ink);
  box-shadow: 8px 10px 0 var(--ink);
}

.phone-badge {
  color: var(--ink);
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}

.download {
  color: var(--paper);
  border-top: 3px solid var(--ink);
  background: var(--rose);
}

.download::before {
  opacity: 0.28;
  background-image: radial-gradient(var(--paper) 1px, transparent 1px);
}

.download-glow {
  border: 3px dashed rgba(255, 240, 212, 0.55);
  border-radius: 41% 59% 48% 52% / 53% 43% 57% 47%;
  transform: rotate(8deg);
}

.download h2 {
  color: var(--paper);
  text-shadow: 4px 4px 0 var(--orange);
}

.store-buttons a {
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-buttons a:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.download-bear {
  filter: drop-shadow(12px 18px 0 rgba(120, 50, 40, 0.3));
}

footer {
  color: var(--paper);
  border-top: 3px solid var(--ink);
  background: var(--orange);
}

footer small {
  border-top: 2px dashed rgba(255, 240, 212, 0.5);
  color: var(--paper);
}

@media (max-width: 900px) {
  .site-header {
    color: var(--paper);
    background: var(--orange);
  }

  .menu-button span {
    height: 2px;
    background: var(--paper);
  }

  .mobile-nav {
    color: var(--ink);
    background: var(--rose);
  }

  .hero {
    min-height: 930px;
    background: linear-gradient(160deg, var(--paper) 0 49%, var(--orange-soft) 49%);
  }

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

  .hero h1 {
    font-size: clamp(47px, 13vw, 66px);
  }

  .hero-visual::before {
    width: 82%;
    height: 72%;
  }

  .story-object > p {
    right: 0;
  }

  .feature-list {
    gap: 28px;
  }

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

  .feature-card:nth-child(2),
  .feature-card:nth-child(3) {
    transform: none;
  }

  .app {
    background: linear-gradient(180deg, var(--paper) 0 48%, var(--blush) 48%);
  }

  .phones::before {
    transform: translateX(-50%) rotate(-4deg);
  }

  .download-bear {
    right: -10%;
  }
}

/* Editorial art direction */
:root {
  --ink: #123d20;
  --cream: #eee7d2;
  --paper: #f4eedc;
  --rose: #f486a0;
  --rose-dark: #df667f;
  --blush: #f6a3b4;
  --orange: #f486a0;
  --orange-soft: #f486a0;
  --yellow: #eee7d2;
  --line: rgba(18, 61, 32, 0.22);
  --display: "Archivo Black", sans-serif;
  --sans: "Inter", "Noto Sans JP", sans-serif;
  --jp: "Noto Sans JP", sans-serif;
}

html {
  background: var(--rose);
}

body {
  min-width: 320px;
  padding: 24px;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 15%, rgba(244, 238, 220, 0.18) 0 2px, transparent 3px),
    var(--rose);
}

main,
footer {
  width: min(1180px, 100%);
  margin-inline: auto;
}

main {
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: var(--paper);
}

.site-header {
  position: absolute;
  top: 24px;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  padding: 26px 34px;
  color: var(--ink);
  border: 0;
  background: transparent;
  transform: translateX(-50%);
}

.logo {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.04em;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--rose);
  box-shadow: none;
}

.desktop-nav {
  gap: 34px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--rose-dark);
}

.header-cta {
  padding: 9px 12px 9px 16px;
  color: var(--paper);
  border: 0;
  background: var(--ink);
  box-shadow: none;
  transform: none;
}

.header-cta span {
  color: var(--ink);
  background: var(--paper);
}

.hero {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 860px;
  padding-top: 280px;
  background: var(--paper);
}

.hero-manifesto {
  position: absolute;
  z-index: 1;
  top: 92px;
  left: 2.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 92%;
  height: 245px;
  overflow: hidden;
  color: var(--ink);
  background: var(--rose);
  clip-path: polygon(
    2% 27%, 8% 12%, 18% 15%, 26% 2%, 36% 18%, 45% 11%,
    54% 28%, 63% 13%, 72% 20%, 80% 7%, 90% 19%, 98% 10%,
    96% 49%, 100% 76%, 88% 91%, 77% 81%, 68% 98%, 57% 84%,
    47% 93%, 37% 78%, 28% 96%, 18% 82%, 7% 90%, 1% 67%
  );
}

.hero-manifesto span {
  width: max-content;
  margin-left: -2%;
  font-family: var(--display);
  font-size: clamp(48px, 6.6vw, 92px);
  line-height: 0.78;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.hero-manifesto span:nth-child(2) {
  margin-left: -13%;
}

.hero-manifesto span:nth-child(3) {
  margin-left: 8%;
}

.hero-copy {
  z-index: 4;
  align-self: center;
  padding: 70px 5vw 80px 7vw;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.eyebrow b {
  color: var(--rose-dark);
}

.hero h1 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-shadow: none;
}

.hero h1 em {
  color: var(--rose-dark);
  text-shadow: none;
}

.hero-description {
  max-width: 340px;
  margin: 36px 0 28px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.text-link {
  justify-content: space-between;
  width: 166px;
  padding: 11px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--sans);
  font-size: 10px;
  transform: none;
}

.text-link:hover {
  color: var(--rose-dark);
  box-shadow: none;
  transform: none;
}

.hero-visual {
  z-index: 3;
  align-self: stretch;
  background: transparent;
}

.hero-visual::before {
  width: 76%;
  height: 68%;
  border: 0;
  border-radius: 45% 55% 37% 63% / 54% 37% 63% 46%;
  background: var(--rose);
  box-shadow: none;
  transform: rotate(4deg);
}

.hero-visual::after {
  width: 48%;
  height: 7%;
  background: rgba(18, 61, 32, 0.12);
  filter: blur(20px);
}

.hero-visual > img {
  z-index: 3;
  width: min(61%, 440px);
  max-height: 68%;
  filter: drop-shadow(0 22px 22px rgba(18, 61, 32, 0.14));
  transform: scale(1.06);
}

.orbit {
  display: none;
}

.float-label {
  z-index: 4;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--sans);
  font-size: 9px;
  transform: none;
}

.label-touch {
  top: 28%;
  left: 8%;
}

.label-connect {
  right: 7%;
  bottom: 19%;
  color: var(--ink);
  background: transparent;
  transform: none;
}

.nfc-chip {
  top: 29%;
  right: 11%;
  color: var(--paper);
  border: 0;
  background: var(--ink);
  box-shadow: none;
}

.hero-note {
  right: 30px;
  bottom: 26px;
  color: var(--ink);
}

.hero-note span {
  color: var(--rose-dark);
}

.marquee {
  padding: 14px 0;
  color: var(--paper);
  border: 0;
  background: var(--ink);
}

.marquee i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
  clip-path: none;
}

.section {
  padding: 120px 7vw;
}

.section-index {
  font-family: var(--sans);
}

.section-index span {
  color: var(--paper);
  border: 0;
  background: var(--ink);
  box-shadow: none;
}

.story {
  grid-template-columns: 15% 46% 39%;
  min-height: 760px;
  background: var(--paper);
}

.kicker {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
}

.story h2,
.app h2 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.075em;
  text-shadow: none;
}

.story h2 span,
.app h2 span {
  color: var(--rose-dark);
}

.story-grid {
  gap: 30px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
}

.story-grid p {
  font-size: 11px;
  line-height: 1.8;
}

.story-disc {
  overflow: hidden;
  width: min(30vw, 390px);
  height: min(36vw, 470px);
  border: 0;
  border-radius: 48% 52% 44% 56% / 39% 43% 57% 61%;
  background: var(--rose);
  box-shadow: none;
  transform: rotate(-2deg);
}

.story-disc img {
  width: 80%;
  transform: translateY(5%) scale(1.15) rotate(2deg);
}

.story-object > p {
  right: 0;
  bottom: 4%;
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--sans);
  transform: none;
}

.features {
  margin: 0 22px;
  padding: 100px 5vw;
  color: var(--paper);
  border: 0;
  border-radius: 24px;
  background: var(--ink);
}

.section-index.light span {
  color: var(--ink);
  border: 0;
  background: var(--rose);
}

.section-heading {
  grid-template-columns: 18% 1fr auto;
}

.section-heading h2 {
  font-family: var(--display);
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  text-shadow: none;
}

.section-heading > p {
  color: rgba(244, 238, 220, 0.72);
  font-family: var(--jp);
}

.feature-list {
  gap: 0;
  border-top: 1px solid rgba(244, 238, 220, 0.22);
}

.feature-card {
  min-height: 360px;
  padding: 34px 30px;
  color: var(--paper);
  border: 0;
  border-right: 1px solid rgba(244, 238, 220, 0.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card + .feature-card {
  border-left: 0;
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  background: transparent;
  transform: none;
}

.feature-icon,
.accent-card .feature-icon {
  width: 92px;
  height: 92px;
  margin: 22px 0 48px;
  color: var(--ink);
  border: 0;
  border-radius: 48% 52% 46% 54% / 51% 43% 57% 49%;
  background: var(--rose);
  box-shadow: none;
}

.feature-card h3 {
  color: var(--paper);
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.feature-card p,
.accent-card p {
  color: rgba(244, 238, 220, 0.72);
  font-size: 11px;
  line-height: 1.8;
}

.feature-card small {
  color: var(--rose);
}

.app {
  grid-template-columns: 50% 50%;
  min-height: 850px;
  background: var(--paper);
}

.app-copy > p {
  font-size: 11px;
  line-height: 1.9;
}

.app li {
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 11px;
}

.phones::before {
  width: 520px;
  height: 520px;
  border: 0;
  border-radius: 43% 57% 51% 49% / 52% 40% 60% 48%;
  background: var(--rose);
  box-shadow: none;
  transform: rotate(3deg);
}

.phone {
  border: 4px solid var(--ink);
  box-shadow: 0 22px 40px rgba(18, 61, 32, 0.18);
}

.phone-badge {
  color: var(--paper);
  border: 0;
  background: var(--ink);
  box-shadow: none;
}

.download {
  min-height: 610px;
  color: var(--paper);
  border: 0;
  background: var(--rose);
}

.download-top {
  min-height: 720px;
  padding-top: 190px;
}

.download-top::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 11%;
  bottom: 5.5%;
  width: min(25vw, 340px);
  height: 34px;
  border-radius: 50%;
  background: rgba(18, 61, 32, 0.2);
  filter: blur(14px);
  animation: bear-shadow 5.8s ease-in-out infinite;
}

.download-top .download-bear {
  z-index: 2;
  bottom: -4%;
  transform-origin: 50% 72%;
  will-change: transform;
  animation: bear-float 5.8s ease-in-out infinite;
}

.download::before {
  opacity: 0.15;
}

.download-glow {
  border: 1px solid rgba(244, 238, 220, 0.35);
  border-radius: 50%;
  transform: none;
}

.download-top .download-glow {
  animation: glow-drift 10s ease-in-out infinite alternate;
}

@keyframes bear-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(3deg) scale(1.12);
  }

  45% {
    transform: translate3d(0, -22px, 0) rotate(1deg) scale(1.12);
  }

  70% {
    transform: translate3d(4px, -14px, 0) rotate(2deg) scale(1.12);
  }
}

@keyframes bear-shadow {
  0%,
  100% {
    opacity: 0.48;
    transform: scaleX(1);
  }

  45% {
    opacity: 0.24;
    transform: scaleX(0.8);
  }

  70% {
    opacity: 0.32;
    transform: scaleX(0.88);
  }
}

@keyframes glow-drift {
  from {
    opacity: 0.7;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 1;
    transform: translate3d(-18px, 10px, 0) scale(1.04);
  }
}

  .download h2 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(48px, 6.8vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-shadow: none;
}

.download-copy > p:not(.eyebrow) {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
}

.download-copy .download-lead {
  max-width: 480px;
  font-family: var(--jp);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.035em;
}

.store-buttons a {
  color: var(--paper);
  border: 0;
  background: var(--ink);
  box-shadow: none;
}

.store-buttons a:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.download-bear {
  filter: drop-shadow(0 28px 26px rgba(18, 61, 32, 0.17));
}

footer {
  grid-template-columns: 1fr 1fr auto;
  padding: 64px 7vw 36px;
  color: var(--paper);
  border: 0;
  border-radius: 0 0 24px 24px;
  background: var(--ink);
}

footer small {
  color: rgba(244, 238, 220, 0.6);
  border-top: 1px solid rgba(244, 238, 220, 0.2);
}

@media (max-width: 900px) {
  body {
    padding: 0;
  }

  .download-top {
    min-height: 820px;
    padding-top: 150px;
  }

  .download-top::after {
    right: 8%;
    bottom: 4%;
    width: 58vw;
    height: 26px;
  }

  main {
    border-radius: 0;
  }

  .site-header {
    top: 0;
    width: 100%;
    padding: 22px 24px;
    color: var(--ink);
  }

  .menu-button span {
    background: var(--ink);
  }

  .mobile-nav {
    color: var(--ink);
    background: var(--rose);
  }

  .hero {
    min-height: 1070px;
    padding-top: 255px;
    background: var(--paper);
  }

  .hero-manifesto {
    top: 76px;
    left: -4%;
    width: 108%;
    height: 205px;
  }

  .hero-manifesto span {
    font-size: 49px;
  }

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

  .hero h1 {
    font-size: clamp(46px, 13vw, 66px);
  }

  .hero-visual {
    height: 40%;
  }

  .hero-visual::before {
    width: 60%;
    height: 58%;
  }

  .hero-visual > img {
    width: 50%;
    max-height: 74%;
  }

  .story-disc {
    width: 82vw;
    height: 96vw;
  }

  .features {
    margin: 0;
    border-radius: 0;
  }

  .feature-list {
    border-top: 0;
  }

  .feature-card {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 238, 220, 0.22);
  }

  .feature-card + .feature-card {
    border-top: 0;
  }

  .phones::before {
    transform: translateX(-50%) rotate(3deg);
  }

  footer {
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .download-top .download-bear,
  .download-top .download-glow,
  .download-top::after {
    animation: none;
  }
}

/* Pastel product palette */
:root {
  --ink: #29251f;
  --cream: #fff0cf;
  --paper: #fff5dc;
  --rose: #ffacc2;
  --rose-dark: #e95f7d;
  --blush: #f7a3bb;
  --orange: #f47b66;
  --orange-soft: #f47b66;
  --yellow: #f5c94f;
  --blue: #39a7c7;
  --green: #79b95b;
  --line: rgba(41, 37, 31, 0.2);
}

html,
body {
  background-color: var(--rose);
}

body {
  background:
    radial-gradient(circle at 6% 13%, rgba(255, 245, 220, 0.22) 0 2px, transparent 3px),
    var(--rose);
}

.logo-dot {
  background: var(--green);
}

.header-cta {
  background: var(--green);
}

.download-top {
  color: var(--ink);
  background: var(--paper);
}

.download-top::before {
  opacity: 0.18;
  background-image: radial-gradient(var(--rose-dark) 1px, transparent 1px);
}

.download-top .download-glow {
  top: 5%;
  right: -4%;
  width: 650px;
  height: 650px;
  border: 0;
  border-radius: 46% 54% 41% 59% / 55% 42% 58% 45%;
  background: var(--rose);
}

.download-top .download-glow::before {
  inset: 76px;
  border-color: rgba(255, 245, 220, 0.5);
}

.download-top .download-glow::after {
  inset: 170px;
  border-color: rgba(255, 245, 220, 0.5);
}

.download h2 {
  color: var(--rose-dark);
}

.download-copy > p:not(.eyebrow),
.download-copy .download-lead {
  color: var(--ink);
}

.download-top .eyebrow {
  color: var(--blue);
}

.store-buttons a {
  color: var(--paper);
  background: var(--blue);
}

.store-buttons a + a {
  background: var(--rose-dark);
}

.download-top::after {
  background: rgba(41, 37, 31, 0.16);
}

.hero-manifesto {
  color: var(--ink);
  background: var(--rose);
}

.hero h1 em {
  color: var(--rose-dark);
}

.nfc-chip {
  color: var(--paper);
  background: var(--blue);
}

.float-label {
  color: var(--rose-dark);
}

.label-connect {
  color: var(--blue);
}

.marquee {
  color: var(--paper);
  background: var(--rose-dark);
}

.marquee i {
  background: var(--yellow);
}

.section-index span {
  color: var(--paper);
  background: var(--blue);
}

.story h2 span,
.app h2 span {
  color: var(--rose-dark);
}

.story-disc {
  background: var(--rose);
}

.features {
  color: var(--paper);
  background: var(--blue);
}

.section-index.light span {
  color: var(--ink);
  background: var(--yellow);
}

.feature-list {
  border-top-color: rgba(255, 245, 220, 0.35);
}

.feature-card {
  border-right-color: rgba(255, 245, 220, 0.35);
}

.feature-icon,
.accent-card .feature-icon {
  color: var(--ink);
  background: var(--rose);
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--yellow);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--green);
}

.feature-card h3 {
  color: var(--paper);
}

.feature-card p,
.accent-card p,
.section-heading > p {
  color: rgba(255, 245, 220, 0.86);
}

.feature-card small {
  color: var(--yellow);
}

.phones::before {
  background: var(--rose);
}

.phone-badge {
  color: var(--paper);
  background: var(--green);
}

footer {
  color: var(--paper);
  background: var(--rose-dark);
}

footer small {
  color: rgba(255, 245, 220, 0.75);
  border-top-color: rgba(255, 245, 220, 0.32);
}

@media (max-width: 900px) {
  .feature-card {
    border-bottom-color: rgba(255, 245, 220, 0.35);
  }
}

/* Feature illustrations */
.feature-list {
  gap: 18px;
  border-top: 0;
}

.feature-card,
.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  min-height: 570px;
  padding: 18px 18px 30px;
  color: var(--ink);
  border: 0;
  border-radius: 18px;
  background: var(--paper);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-number {
  z-index: 4;
  top: 30px;
  right: 30px;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 9px;
}

.feature-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 270px;
  margin-bottom: 27px;
  overflow: hidden;
  border-radius: 13px;
}

.feature-tap {
  background: var(--rose);
}

.feature-tap > img {
  position: absolute;
  left: 1%;
  bottom: -2%;
  width: 57%;
  filter: drop-shadow(0 12px 12px rgba(41, 37, 31, 0.15));
  transform: scaleX(-1);
}

.visual-phone {
  position: absolute;
  z-index: 2;
  right: 11%;
  bottom: 7%;
  width: 66px;
  color: var(--ink);
  transform: rotate(-22deg);
}

.visual-phone svg {
  width: 100%;
}

.visual-phone rect,
.visual-phone path {
  fill: var(--paper);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.visual-phone path {
  fill: none;
}

.nfc-waves {
  position: absolute;
  z-index: 3;
  right: 33%;
  bottom: 17%;
  width: 42px;
  height: 42px;
}

.nfc-waves i {
  position: absolute;
  left: 0;
  bottom: 0;
  border: 3px solid var(--yellow);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 0 100% 0 0;
  transform: rotate(-45deg);
}

.nfc-waves i:nth-child(1) {
  width: 13px;
  height: 13px;
}

.nfc-waves i:nth-child(2) {
  width: 25px;
  height: 25px;
}

.nfc-waves i:nth-child(3) {
  width: 38px;
  height: 38px;
}

.feature-write {
  background: var(--yellow);
}

.app-preview {
  position: absolute;
  top: 25px;
  width: 116px;
  height: 238px;
  overflow: hidden;
  padding: 5px;
  border: 3px solid var(--ink);
  border-radius: 22px;
  background: var(--ink);
  box-shadow: 8px 9px 0 rgba(41, 37, 31, 0.16);
  transform: rotate(-4deg);
}

.app-preview img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.write-bubble,
.write-pencil {
  position: absolute;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
}

.write-bubble {
  top: 42px;
  right: 14%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 19px;
  transform: rotate(7deg);
}

.write-pencil {
  left: 14%;
  bottom: 43px;
  width: 47px;
  height: 47px;
  border-radius: 13px;
  color: var(--paper);
  background: var(--blue);
  font-size: 24px;
  transform: rotate(-9deg);
}

.feature-share {
  background: var(--green);
}

.feature-share > img {
  position: absolute;
  bottom: -11%;
  width: 55%;
  filter: drop-shadow(0 12px 12px rgba(41, 37, 31, 0.15));
}

.share-bubble {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  font-size: 24px;
  box-shadow: 4px 4px 0 rgba(41, 37, 31, 0.14);
}

.share-bubble svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.share-link {
  top: 30px;
  left: 13%;
  background: var(--yellow);
  transform: rotate(-8deg);
}

.share-music {
  top: 25px;
  right: 13%;
  color: var(--paper);
  background: var(--rose-dark);
  transform: rotate(8deg);
}

.share-message {
  right: 8%;
  bottom: 45px;
  background: var(--blue);
  transform: rotate(-5deg);
}

.feature-jp {
  display: block;
  margin: 0 12px 8px;
  color: var(--rose-dark);
  font-family: var(--jp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  margin: 0 12px 15px;
  color: var(--ink);
  font-size: 26px;
}

.feature-card p,
.accent-card p {
  margin: 0 12px;
  color: rgba(41, 37, 31, 0.72);
  font-size: 12px;
  line-height: 1.9;
}

.feature-card small {
  display: none;
}

@media (max-width: 900px) {
  .feature-list {
    gap: 16px;
  }

  .feature-card,
  .feature-card:nth-child(2),
  .feature-card:nth-child(3) {
    min-height: 540px;
    border-bottom: 0;
  }
}

/* Image logo */
.brand-logo {
  display: block;
  width: 148px;
  height: auto;
  line-height: 0;
}

.brand-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 0 rgba(41, 37, 31, 0.08));
}

.footer-logo {
  width: 190px;
}

@media (max-width: 900px) {
  .brand-logo {
    width: 126px;
  }

  .footer-logo {
    width: 170px;
  }
}

/* Official store badges */
.store-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.store-buttons a,
.store-buttons a + a {
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 13px;
  background: transparent;
  box-shadow: none;
  transition: transform 160ms ease;
}

.store-buttons a:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.store-buttons img {
  display: block;
  height: 56px;
  width: auto;
}

@media (max-width: 900px) {
  .store-buttons {
    flex-wrap: wrap;
    gap: 12px;
  }

  .store-buttons img {
    height: 48px;
  }
}

/* Footer — readable single-column layout on mobile */
@media (max-width: 900px) {
  footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 48px 24px 32px;
    text-align: left;
  }

  .footer-logo {
    width: 148px;
  }

  footer > p {
    max-width: 24ch;
    margin: 0;
    font-size: 12px;
    line-height: 1.8;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 13px;
  }

  footer small {
    width: 100%;
    margin-top: 8px;
    padding-top: 22px;
  }
}

/* Hero mobile — copy top-aligned so the bear never overlaps the text */
@media (max-width: 900px) {
  .hero-copy {
    align-self: start;
  }
}

/* Teaser mode — page ends at the TOUCH SOMETHING REAL banner */
.hero-teaser {
  display: block;
  min-height: 0;
  height: 430px;
  padding-top: 0;
}

@media (max-width: 900px) {
  .hero-teaser {
    min-height: 0;
    height: 330px;
    padding-top: 0;
  }

  .hero-teaser .hero-manifesto {
    top: 62px;
  }
}
