:root {
  --blue: #177ead;
  --blue-soft: #dff5fa;
  --ink: #111;
  --muted: #59656d;
  --paper: #fff;
  --soft: #f6f6f6;
  --line: #dce8eb;
  --container: 1060px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.9;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 0 48px;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.28s ease;
}

.header.is-hidden {
  transform: translateY(-100%);
}

.nav-shell {
  position: relative;
  width: min(1360px, 100%);
  height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.24);
  transition:
    color 0.18s ease,
    text-shadow 0.18s ease;
}

.header.is-brand-blue .brand {
  color: var(--blue);
  text-shadow: none;
}

.header.is-menu-open .brand {
  color: var(--blue);
  text-shadow: none;
}

.brand svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.menu-button {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.menu-button span {
  position: relative;
}

.menu-button::before {
  transform: none;
}

.menu-button::after {
  transform: none;
}

.header.is-menu-open .menu-button span {
  opacity: 0;
}

.header.is-menu-open .menu-button::before {
  transform: translateY(7px) rotate(45deg);
}

.header.is-menu-open .menu-button::after {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  padding: 132px 48px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    radial-gradient(circle at 18% 22%, rgba(23, 126, 173, 0.1), transparent 32%),
    radial-gradient(circle at 82% 74%, rgba(114, 199, 165, 0.16), transparent 34%),
    rgba(246, 246, 246, 0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.02);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
  backdrop-filter: blur(18px);
}

.nav-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(23, 126, 173, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 126, 173, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.header.is-menu-open .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.nav-menu a {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 12px 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 3.6vw, 2.5rem);
  line-height: 1.14;
  font-weight: 900;
  text-align: center;
  transform: translateY(18px);
  opacity: 0;
  transition:
    color 0.18s ease,
    opacity 0.34s ease,
    transform 0.34s ease;
}

.header.is-menu-open .nav-menu a {
  opacity: 1;
  transform: translateY(0);
}

.header.is-menu-open .nav-menu a:nth-child(1) {
  transition-delay: 0.04s;
}

.header.is-menu-open .nav-menu a:nth-child(2) {
  transition-delay: 0.08s;
}

.header.is-menu-open .nav-menu a:nth-child(3) {
  transition-delay: 0.12s;
}

.header.is-menu-open .nav-menu a:nth-child(4) {
  transition-delay: 0.16s;
}

.header.is-menu-open .nav-menu a:nth-child(5) {
  transition-delay: 0.2s;
}

.header.is-menu-open .nav-menu a:nth-child(6) {
  transition-delay: 0.24s;
}

.nav-menu a:hover {
  color: var(--blue);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 30px;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.3);
}

.nav-links a {
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #fff;
}

.page-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 18;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(8, 38, 48, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.92) 0 8%, transparent 26%),
    linear-gradient(180deg, #dff7ff 0%, #f6fbfd 58%, #eef8fb 100%);
  overflow: hidden;
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: auto -4vw 0;
  height: 36%;
  background:
    radial-gradient(80px 42px at 10% 58%, rgba(125, 185, 58, 0.62), transparent 72%),
    radial-gradient(130px 58px at 28% 52%, rgba(148, 205, 67, 0.58), transparent 74%),
    radial-gradient(120px 64px at 48% 66%, rgba(112, 178, 56, 0.62), transparent 76%),
    radial-gradient(160px 72px at 70% 52%, rgba(139, 204, 65, 0.56), transparent 76%),
    radial-gradient(110px 64px at 90% 62%, rgba(104, 168, 54, 0.58), transparent 76%),
    linear-gradient(180deg, transparent, rgba(142, 191, 73, 0.42));
  filter: blur(0.2px);
}

.dummy-phone {
  position: absolute;
  width: 224px;
  height: 470px;
  padding: 16px 12px;
  border: 10px solid #fff;
  border-radius: 34px;
  background: #f8fbfc;
  box-shadow: 0 20px 42px rgba(27, 75, 91, 0.18);
  transform: rotate(var(--rotate, 0deg));
}

.dummy-phone::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 68px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #e7eef1;
}

.phone-a {
  top: -150px;
  left: 14%;
  --rotate: -14deg;
}

.phone-b {
  top: -92px;
  right: 18%;
  --rotate: 12deg;
}

.phone-c {
  top: 182px;
  right: 8%;
  --rotate: -9deg;
}

.phone-d {
  bottom: -150px;
  right: 25%;
  --rotate: 13deg;
}

.phone-e {
  bottom: -150px;
  left: -28px;
  --rotate: -12deg;
}

.phone-screen {
  height: 100%;
  padding: 28px 14px 14px;
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.phone-label {
  height: 24px;
  width: 62%;
  border-radius: 999px;
  background: var(--blue);
}

.phone-hero-card {
  margin-top: 14px;
  height: 132px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 76% 22%, #ffd578 0 10%, transparent 25%),
    linear-gradient(180deg, #c7eff9 0 48%, #177ead 49% 100%);
}

.phone-list {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}

.phone-row {
  height: 34px;
  border-radius: 10px;
  background: #eef6f8;
}

.phone-row:nth-child(2) {
  width: 84%;
}

.phone-row:nth-child(3) {
  width: 68%;
}

.phone-tab {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  height: 28px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 20% 50%, var(--blue) 0 6px, transparent 7px),
    radial-gradient(circle at 50% 50%, #d7e9ee 0 6px, transparent 7px),
    radial-gradient(circle at 80% 50%, #d7e9ee 0 6px, transparent 7px);
}

.dummy-icon {
  position: absolute;
  top: 245px;
  right: 37%;
  --rotate: 9deg;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 20px 42px rgba(27, 75, 91, 0.16);
  transform: rotate(var(--rotate));
}

.dummy-icon svg {
  width: 76px;
  height: 76px;
  fill: currentColor;
}

.hero-blob {
  position: absolute;
  left: max(-140px, calc((100vw - 1366px) / 2 - 140px));
  bottom: 24px;
  z-index: 1;
  width: min(960px, 68vw);
  aspect-ratio: 1.04;
  border-radius: 48% 52% 42% 58% / 56% 44% 56% 44%;
  background: var(--blue);
}

.hero-inner {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 132px 0 168px;
  position: relative;
  z-index: 3;
}

.hero-copy {
  max-width: 680px;
  color: #fff;
  text-shadow: none;
}

.eyebrow {
  color: #c7f5ff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin-top: 14px;
  font-size: clamp(3rem, 7.2vw, 5.8rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.lead {
  margin-top: 28px;
  max-width: 660px;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 800;
  line-height: 2;
  overflow-wrap: anywhere;
}

.store-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  width: 186px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
}

@media (max-height: 760px) and (min-width: 761px) {
  .nav-shell {
    height: 76px;
  }

  .menu-button {
    width: 54px;
    height: 54px;
  }

  .hero,
  .hero-inner {
    min-height: 640px;
  }

  .hero-inner {
    align-items: center;
    padding: 96px 0 64px;
  }

  .hero-copy {
    max-width: 610px;
  }

  h1 {
    margin-top: 10px;
    font-size: clamp(3rem, 6.4vw, 4.55rem);
    line-height: 1.05;
  }

  .lead {
    margin-top: 18px;
    max-width: 560px;
    font-size: clamp(0.92rem, 1.35vw, 1.02rem);
    line-height: 1.72;
  }

  .store-row {
    margin-top: 22px;
  }

  .store-badge {
    width: 168px;
    height: 50px;
  }

  .dummy-phone {
    width: 176px;
    height: 370px;
    border-width: 8px;
  }

  .phone-a {
    top: -170px;
    left: 18%;
  }

  .phone-b {
    top: -142px;
    right: 17%;
  }

  .phone-c {
    top: 138px;
    right: 5%;
  }

  .phone-d {
    bottom: -182px;
    right: 26%;
  }

  .phone-e {
    bottom: -190px;
    left: -48px;
  }

  .dummy-icon {
    top: 202px;
    right: 38%;
    width: 104px;
    height: 104px;
    border-radius: 28px;
  }

  .dummy-icon svg {
    width: 62px;
    height: 62px;
  }

  .hero-blob {
    bottom: -18px;
    width: min(760px, 62vw);
  }

  .hero-art::before {
    height: 29%;
  }
}

.hero-copy > * {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: hero-rise 0.78s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

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

.hero-copy > *:nth-child(4) {
  animation-delay: 0.36s;
}

.dummy-phone,
.dummy-icon {
  animation: hero-float-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.phone-b,
.phone-e {
  animation-delay: 0.12s;
}

.phone-c,
.dummy-icon {
  animation-delay: 0.22s;
}

.phone-d {
  animation-delay: 0.32s;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.985);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translate3d(-34px, 18px, 0) scale(0.985);
}

[data-reveal="right"] {
  transform: translate3d(34px, 18px, 0) scale(0.985);
}

[data-reveal="zoom"] {
  transform: translate3d(0, 16px, 0) scale(0.94);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-float-in {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) rotate(var(--rotate, 0deg)) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(var(--rotate, 0deg)) scale(1);
  }
}

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

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

  .hero-copy > *,
  .dummy-phone,
  .dummy-icon,
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

section {
  padding: 88px 0;
}

.section-title {
  color: var(--blue);
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.about-box .section-title {
  position: static;
  margin-bottom: 32px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  white-space: nowrap;
}

.about {
  background: var(--soft);
  padding-top: 88px;
}

.about-box {
  position: relative;
  padding: 104px 88px;
  border-radius: 80px;
  background: #fff;
}

.about-box::before {
  content: none;
}

.about-mark {
  display: none;
}

.about-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.body-copy {
  color: var(--muted);
  font-weight: 700;
  max-width: 700px;
}

.body-copy p + p {
  margin-top: 1.2em;
}

.about-lead {
  display: inline;
  max-width: 720px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.45;
  font-weight: 900;
}

.about-sublead {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.8;
}

.about-wide-visual {
  position: relative;
  height: 220px;
  margin-top: 42px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 44%, #177ead 0 7px, transparent 8px),
    radial-gradient(circle at 36% 64%, #f2b84b 0 9px, transparent 10px),
    radial-gradient(circle at 68% 34%, #72c7a5 0 8px, transparent 9px),
    linear-gradient(135deg, #dff5fa, #f8fcfd);
  overflow: hidden;
}

.about-wide-visual::before,
.about-wide-visual::after {
  content: "";
  position: absolute;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(8, 38, 48, 0.1);
}

.about-wide-visual::before {
  left: 44px;
  bottom: 30px;
  width: 240px;
  height: 126px;
  transform: rotate(-4deg);
}

.about-wide-visual::after {
  right: 44px;
  top: 30px;
  width: 280px;
  height: 138px;
  transform: rotate(3deg);
}

.wide-line {
  position: absolute;
  left: 29%;
  right: 24%;
  top: 50%;
  height: 5px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateY(-50%);
}

.wide-line::before,
.wide-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 24px rgba(8, 38, 48, 0.1);
  transform: translateY(-50%);
}

.wide-line::before {
  left: -24px;
}

.wide-line::after {
  right: -24px;
}

.about-compare {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: var(--blue-soft);
  overflow: hidden;
}

.compare-card:nth-child(2) {
  background: #eef8fb;
}

.compare-card:nth-child(3) {
  background: #f4fbfd;
}

.compare-card:nth-child(4) {
  background: #e9f7fa;
}

.compare-label {
  color: var(--blue);
  font-size: clamp(1.45rem, 2.45vw, 2.05rem);
  line-height: 1.25;
  font-weight: 900;
  white-space: nowrap;
}

.compare-visual {
  position: relative;
  width: min(100%, 300px);
  height: 210px;
  margin: 0 auto 28px;
}

.ai-photo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 156px;
  height: 118px;
  border: 8px solid #fff;
  border-radius: 22px;
  background:
    radial-gradient(circle at 72% 28%, #ffd578 0 14%, transparent 28%),
    linear-gradient(180deg, #c7eff9 0 52%, #177ead 53% 100%);
  box-shadow: 0 14px 28px rgba(8, 38, 48, 0.12);
  transform: rotate(-5deg);
}

.ai-result {
  position: absolute;
  right: 0;
  top: 0;
  width: 150px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(8, 38, 48, 0.12);
}

.ai-result strong {
  display: block;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.ai-result span {
  display: block;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: #dff1f5;
}

.data-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 176px;
  height: 176px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 33%, transparent 34%),
    conic-gradient(from -28deg, #177ead, #72c7a5, #f2b84b, #177ead);
  box-shadow: 0 14px 30px rgba(8, 38, 48, 0.12);
}

.data-orbit::before {
  content: "";
  position: absolute;
  inset: 38px;
  border-radius: 50%;
  background: #fff;
}

.data-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(8, 38, 48, 0.1);
}

.chip-tide {
  transform: translate(-50%, -50%) translate(0, -82px);
}

.chip-weather {
  transform: translate(-50%, -50%) translate(78px, -26px);
}

.chip-water {
  transform: translate(-50%, -50%) translate(-78px, -26px);
}

.chip-moon {
  transform: translate(-50%, -50%) translate(-48px, 72px);
}

.chip-etc {
  transform: translate(-50%, -50%) translate(48px, 72px);
}

.analysis-visual {
  position: absolute;
  inset: 20px 24px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 14px;
}

.analysis-bar {
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, #177ead, #72c7a5);
  box-shadow: 0 12px 24px rgba(8, 38, 48, 0.1);
}

.analysis-bar:nth-child(1) {
  height: 58%;
}

.analysis-bar:nth-child(2) {
  height: 86%;
  background: linear-gradient(180deg, #f2b84b, #72c7a5);
}

.analysis-bar:nth-child(3) {
  height: 70%;
}

.analysis-badge {
  position: absolute;
  top: 16px;
  right: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(8, 38, 48, 0.1);
}

.tide-card {
  position: absolute;
  inset: 28px 16px 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #fff 0 54%, #d9f4fb 55% 100%);
  box-shadow: 0 14px 28px rgba(8, 38, 48, 0.12);
  overflow: hidden;
}

.tide-card::before {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  top: 45%;
  height: 58px;
  background:
    radial-gradient(60px 36px at 12% 50%, transparent 64%, var(--blue) 65% 69%, transparent 70%),
    radial-gradient(70px 38px at 38% 50%, transparent 64%, var(--blue) 65% 69%, transparent 70%),
    radial-gradient(70px 38px at 64% 50%, transparent 64%, var(--blue) 65% 69%, transparent 70%),
    radial-gradient(60px 36px at 90% 50%, transparent 64%, var(--blue) 65% 69%, transparent 70%);
}

.tide-line {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.tide-line span {
  height: 8px;
  border-radius: 999px;
  background: #bfe8ef;
}

.features {
  position: relative;
  --feature-head-space: clamp(116px, 18svh, 172px);
  --feature-stage-height: min(560px, calc(100svh - var(--feature-head-space)));
  --feature-phone-height: clamp(330px, calc(var(--feature-stage-height) - 64px), 452px);
  --feature-phone-width: calc(var(--feature-phone-height) * 0.495);
  min-height: calc(100vh + var(--feature-scroll-distance, 1200px));
  min-height: calc(100svh + var(--feature-scroll-distance, 1200px));
  padding: 0;
  background:
    linear-gradient(rgba(23, 126, 173, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 126, 173, 0.07) 1px, transparent 1px),
    var(--soft);
  background-size: 28px 28px;
  background-attachment: fixed;
}

.features .container {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  height: 100svh;
  min-height: min(640px, 100svh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.feature-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(320px, 42vw, 560px);
  height: auto;
  transform: translate(-50%, -50%);
  color: var(--blue);
  opacity: 0.075;
  pointer-events: none;
  z-index: 0;
}

.feature-watermark path {
  fill: currentColor;
}

.features .section-title,
.feature-progress,
.feature-list {
  position: relative;
  z-index: 1;
}

.features .section-title {
  text-align: center;
}

.feature-progress {
  width: min(240px, 52vw);
  height: 4px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.feature-progress span {
  border-radius: 999px;
  background: rgba(23, 126, 173, 0.18);
  transition:
    background 0.22s ease,
    opacity 0.22s ease;
}

.feature-progress span.is-active {
  background: var(--blue);
  opacity: 1;
}

.feature-list {
  margin-top: 56px;
  display: flex;
  gap: 0;
  overflow: visible;
  overscroll-behavior-x: contain;
  scroll-snap-type: none;
  padding: 28px 0 42px;
  border-top: 0;
  transform: translate3d(var(--feature-track-x, 0px), 0, 0);
  will-change: transform;
}

@media (max-height: 840px) and (min-width: 761px) {
  .features {
    --feature-head-space: clamp(190px, 31svh, 232px);
    --feature-stage-height: min(500px, calc(100svh - var(--feature-head-space)));
    --feature-phone-height: clamp(300px, calc(var(--feature-stage-height) - 36px), 386px);
  }

  .features .container {
    justify-content: flex-start;
    padding-top: 84px;
    padding-bottom: 36px;
    overflow: hidden;
  }

  .feature-list {
    margin-top: 26px;
    padding: 0 0 22px;
  }

  .feature {
    align-items: start;
  }

  .feature-main {
    padding-top: 24px;
  }

  .feature-media {
    min-height: calc(var(--feature-phone-height) + 32px);
    place-items: start center;
  }

  .feature-note {
    padding: 10px 13px;
    font-size: 0.78rem;
  }
}

.feature-list::-webkit-scrollbar {
  display: none;
}

.feature {
  flex: 0 0 100%;
  scroll-snap-align: center;
  min-width: 0;
  min-height: var(--feature-stage-height);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 54px;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.58;
  transition: opacity 0.26s ease;
}

.feature.is-active {
  opacity: 1;
}

.feature-main {
  min-width: 0;
  text-align: left;
  transform: translateY(10px);
  transition: transform 0.28s ease;
}

.feature.is-active .feature-main,
.feature.is-active .feature-media {
  transform: translateY(0);
}

.feature h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.35;
  font-weight: 900;
}

.feature p {
  margin-top: 18px;
  max-width: 31em;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.feature-media {
  position: relative;
  z-index: 1;
  min-height: var(--feature-stage-height);
  display: grid;
  place-items: center;
  transform: translateY(10px);
  transition: transform 0.28s ease;
}

.feature-shot {
  position: relative;
  width: min(var(--feature-phone-width), 100%);
  height: var(--feature-phone-height);
  margin: 0 auto;
  padding: 16px 10px 12px;
  border: 8px solid #12191f;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(8, 38, 48, 0.12);
  overflow: hidden;
}

.feature-shot::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 54px;
  height: 9px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #111;
  z-index: 4;
}

.shot-screen {
  position: relative;
  height: 100%;
  padding: 24px 10px 10px;
  border-radius: 17px;
  background: #f7fbfc;
  overflow: hidden;
}

.shot-asset {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  background: #f7fbfc;
}

.shot-asset + .shot-photo,
.shot-asset + .shot-tide,
.shot-asset + .shot-chart,
.shot-asset + .shot-map {
  display: none;
}

.shot-photo {
  height: 112px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 70% 28%, #ffd578 0 12%, transparent 26%),
    linear-gradient(180deg, #c7eff9 0 50%, #177ead 51% 100%);
}

.shot-map {
  height: 160px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 26%, var(--blue) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 38%, var(--blue) 0 5px, transparent 6px),
    radial-gradient(circle at 48% 68%, var(--blue) 0 5px, transparent 6px),
    linear-gradient(135deg, #bfe9d8, #d6eff7 52%, #9fd4ec);
}

.shot-chart {
  height: 132px;
  border-radius: 14px;
  background:
    conic-gradient(from 0deg, #177ead 0 36%, #f28f34 36% 62%, #73c6a1 62% 100%);
  border: 24px solid #f7fbfc;
  box-shadow: inset 0 0 0 18px #fff;
}

.shot-tide {
  position: relative;
  height: 150px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, #fff 0 52%, #d8f3fb 53% 100%);
  box-shadow: inset 0 0 0 1px #e3f0f4;
  overflow: hidden;
}

.shot-tide::before {
  content: "";
  position: absolute;
  left: -22%;
  right: -22%;
  top: 47%;
  height: 58px;
  background:
    radial-gradient(58px 34px at 14% 50%, transparent 65%, var(--blue) 66% 70%, transparent 71%),
    radial-gradient(66px 36px at 42% 50%, transparent 65%, var(--blue) 66% 70%, transparent 71%),
    radial-gradient(66px 36px at 70% 50%, transparent 65%, var(--blue) 66% 70%, transparent 71%),
    radial-gradient(58px 34px at 96% 50%, transparent 65%, var(--blue) 66% 70%, transparent 71%);
}

.feature-note {
  position: absolute;
  z-index: 5;
  max-width: 190px;
  padding: 13px 16px;
  border: 1px solid rgba(23, 126, 173, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(8, 38, 48, 0.1);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  backdrop-filter: blur(10px);
}

.note-ai {
  top: 44px;
  left: 4px;
}

.note-env {
  right: -6px;
  bottom: 78px;
}

.note-photo {
  right: 0;
  top: 160px;
}

.note-tide {
  top: 54px;
  right: -8px;
  max-width: 218px;
}

.note-weather {
  left: 0;
  top: 174px;
}

.note-moon {
  right: 8px;
  bottom: 72px;
}

.note-analysis {
  left: 0;
  bottom: 92px;
}

.note-trend {
  top: 52px;
  right: -4px;
}

.note-point {
  left: 8px;
  top: 178px;
}

.shot-lines {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.shot-lines span {
  height: 28px;
  border-radius: 8px;
  background: #e9f2f5;
}

.shot-lines span:nth-child(2) {
  width: 84%;
}

.shot-lines span:nth-child(3) {
  width: 68%;
}

.more-features {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.more-card {
  min-height: 320px;
  padding: 42px;
  border-radius: 28px;
  background: #fff;
}

.more-card .compare-visual {
  margin-bottom: 30px;
}

.more-card h3 {
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.45;
  font-weight: 900;
}

.mini-icons {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mini-icon {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.mini-icon span {
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 22px rgba(8, 38, 48, 0.1);
}

.ai-card {
  position: relative;
  overflow: hidden;
}

.ai-card p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.fish-dummy {
  position: absolute;
  right: 28px;
  bottom: 30px;
  width: 260px;
  height: 92px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 82% 50%, #fff 0 7px, transparent 8px),
    linear-gradient(90deg, #b9a05d, #e2c273 48%, #9a7c3e);
  clip-path: polygon(0 50%, 15% 18%, 74% 18%, 100% 0, 86% 50%, 100% 100%, 74% 82%, 15% 82%);
}

.insights {
  background: #fff;
}

.screens-heading {
  text-align: center;
}

.screens-lead {
  margin-top: 18px;
  margin-inline: auto;
  max-width: 720px;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.screen-gallery {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 24px;
  align-items: start;
}

.screen-card {
  text-align: center;
}

.screen-card .feature-shot {
  width: min(100%, 190px);
  height: 384px;
  margin: 0 auto;
}

.screen-card h3 {
  margin-top: 22px;
  font-size: 1.08rem;
  font-weight: 900;
}

.screen-card p {
  margin: 8px auto 0;
  max-width: 15em;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.7;
}

.signal-strip {
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.signal-strip span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.signal-strip b {
  color: var(--blue);
}

.flow {
  background: var(--soft);
}

.flow .section-title {
  text-align: center;
}

.flow-list {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.flow-item {
  position: relative;
  display: grid;
  grid-template-rows: auto 130px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 330px;
  padding: 34px 28px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.flow-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -34px;
  color: var(--blue);
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 900;
  transform: translateY(-50%);
}

.flow-num {
  color: var(--blue);
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.flow-visual {
  position: relative;
  width: min(100%, 220px);
  height: 130px;
  margin: 0 auto;
  border-radius: 8px;
  background: #f3fafc;
  overflow: hidden;
}

.flow-asset,
.flow-showcase-asset {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  background: #f7fbfc;
}

.flow-asset + * {
  display: none;
}

.flow-visual::before {
  content: "";
  position: absolute;
  inset: 18px 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(8, 38, 48, 0.08);
}

.flow-visual.photo::after {
  content: "";
  position: absolute;
  left: 52px;
  right: 52px;
  top: 30px;
  height: 70px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 70% 30%, #ffd578 0 13px, transparent 25px),
    linear-gradient(180deg, #c7eff9 0 50%, var(--blue) 51% 100%);
}

.flow-visual.auto::after {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  top: 32px;
  height: 64px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 50%, var(--blue) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 50%, var(--blue) 0 5px, transparent 6px),
    radial-gradient(circle at 78% 50%, var(--blue) 0 5px, transparent 6px),
    #dff5fa;
}

.flow-visual.review::after {
  content: "";
  position: absolute;
  left: 54px;
  right: 54px;
  top: 34px;
  height: 62px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--blue) 0 42%, #f2b84b 42% 66%, #72c7a5 66% 100%);
  border: 15px solid #fff;
  box-shadow: inset 0 0 0 12px #f3fafc;
}

.flow-item h3 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.25;
  font-weight: 900;
}

.flow-item p {
  max-width: 15em;
  margin: 0 auto;
  color: var(--muted);
  font-weight: 800;
}

.flow-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 122px;
}

.flow-showcase {
  position: relative;
  min-height: 330px;
  margin-top: 58px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(23, 126, 173, 0.1), rgba(114, 199, 165, 0.16)),
    #fff;
  overflow: hidden;
}

.flow-showcase::before {
  content: "";
  position: absolute;
  inset: 42px auto auto 9%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(23, 126, 173, 0.12);
}

.flow-showcase-phone {
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 214px;
  height: 398px;
  padding: 16px 12px;
  transform: translateX(-50%) rotate(-2deg);
  border: 8px solid #131b21;
  border-radius: 34px;
  background: #f8fbfc;
  box-shadow: 0 24px 42px rgba(8, 38, 48, 0.18);
}

.flow-showcase-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 56px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #131b21;
}

.flow-showcase-screen {
  position: relative;
  height: 100%;
  padding: 38px 14px 16px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #bdeef7 0 32%, #2186ae 32% 46%, #f4fafb 46% 100%);
  overflow: hidden;
}

.flow-showcase-screen span {
  display: block;
  height: 18px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(23, 126, 173, 0.1);
}

.flow-showcase-screen span:nth-child(2) {
  width: 72%;
}

.flow-showcase-screen span:nth-child(3) {
  width: 54%;
}

.flow-showcase-label {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(8, 38, 48, 0.12);
}

.flow-showcase-label.photo {
  top: 72px;
  left: 16%;
}

.flow-showcase-label.auto {
  right: 14%;
  top: 110px;
}

.flow-showcase-label.review {
  left: 17%;
  bottom: 74px;
}

.flow-showcase-label.data {
  right: 13%;
  bottom: 70px;
}

.faq-list {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.faq details {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 900;
}

.faq p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.download {
  position: relative;
  min-height: 620px;
  padding: 130px 0;
  color: #fff;
  background: var(--blue);
  overflow: hidden;
}

.download::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 36%, rgba(255, 213, 120, 0.38) 0 9%, transparent 20%),
    linear-gradient(180deg, rgba(177, 232, 241, 0.4) 0 45%, rgba(23, 126, 173, 0.75) 46% 100%);
  background-position: center;
  background-size: cover;
}

.download::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 31, 43, 0.72) 0%, rgba(4, 31, 43, 0.48) 45%, rgba(4, 31, 43, 0.12) 100%);
}

.download .container {
  position: relative;
  z-index: 1;
}

.download h2 {
  max-width: 760px;
  font-size: clamp(2.3rem, 5.4vw, 5rem);
  line-height: 1.18;
  font-weight: 900;
}

.download p {
  max-width: 560px;
  margin-top: 22px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.9;
}

.download .store-row {
  margin-top: 34px;
}

.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mobile-break {
  display: none;
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header {
    padding: 0 22px;
  }

  .nav-shell {
    height: 76px;
  }

  .brand {
    font-size: 1.08rem;
  }

  .brand svg {
    width: 32px;
    height: 32px;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    width: 56px;
    height: 56px;
  }

  .nav-menu {
    padding: 112px 24px 40px;
    gap: 10px;
  }

  .nav-menu a {
    padding: 9px 0;
    font-size: clamp(1.35rem, 7.2vw, 2.25rem);
  }

  .page-top {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .hero,
  .hero-inner {
    min-height: 92vh;
  }

  .hero-blob {
    left: -44vw;
    bottom: 56px;
    width: 136vw;
  }

  .dummy-phone {
    width: 144px;
    height: 302px;
    border-width: 7px;
    border-radius: 24px;
  }

  .phone-a,
  .phone-b,
  .phone-d,
  .phone-e,
  .dummy-icon {
    display: none;
  }

  .phone-c {
    top: 86px;
    right: -48px;
    opacity: 0.7;
  }

  .phone-screen {
    padding: 22px 9px 9px;
    border-radius: 16px;
  }

  .phone-hero-card {
    height: 82px;
  }

  .phone-row {
    height: 22px;
    border-radius: 7px;
  }

  .phone-tab {
    left: 14px;
    right: 14px;
    bottom: 13px;
  }

  .hero-inner {
    padding: 112px 0 112px;
  }

  h1 {
    font-size: clamp(2.35rem, 10.6vw, 3rem);
    line-height: 1.18;
  }

  .lead {
    font-size: 0.98rem;
    line-height: 1.85;
  }

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

  .store-row {
    display: grid;
    grid-template-columns: 1fr;
    width: min(280px, 100%);
  }

  .download .store-row {
    margin-inline: auto;
  }

  .download {
    min-height: 560px;
    padding: 100px 0;
  }

  .download::after {
    background: linear-gradient(180deg, rgba(4, 31, 43, 0.68), rgba(4, 31, 43, 0.34));
  }

  .download h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .download p {
    font-size: 0.95rem;
    overflow-wrap: anywhere;
  }

  .store-badge {
    width: 100%;
  }

  section {
    padding: 72px 0;
  }

  .about {
    padding-top: 72px;
  }

  .features .container {
    justify-content: flex-start;
    padding-top: 78px;
  }

  .features .section-title {
    font-size: clamp(1.75rem, 7.2vw, 2.15rem);
  }

  .feature-watermark {
    width: 280px;
    transform: translate(-50%, -50%);
    opacity: 0.06;
  }

  .about-grid,
  .feature {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-box {
    padding: 136px 24px 64px;
    border-radius: 40px;
  }

  .about-box::before {
    top: 44px;
    left: 24px;
    width: 92px;
    height: 92px;
  }

  .about-mark {
    top: 66px;
    left: 47px;
    width: 48px;
    height: 48px;
  }

  .about-box .section-title {
    margin-bottom: 32px;
    font-size: 1.8rem;
  }

  .about-wide-visual {
    height: 160px;
    margin-top: 32px;
    border-radius: 22px;
  }

  .about-wide-visual::before {
    left: 22px;
    bottom: 24px;
    width: 138px;
    height: 82px;
  }

  .about-wide-visual::after {
    right: 20px;
    top: 24px;
    width: 154px;
    height: 86px;
  }

  .wide-line {
    left: 30%;
    right: 28%;
  }

  .feature-list {
    gap: 30px;
    margin-top: 28px;
    padding: 12px 0 20px;
  }

  .feature {
    flex-basis: 100%;
    min-height: 0;
    display: block;
    padding: 0;
  }

  .about-compare {
    grid-template-columns: 1fr;
  }

  .compare-card {
    padding: 24px;
  }

  .compare-visual {
    width: min(100%, 250px);
    opacity: 0.95;
  }

  .feature p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.92rem;
    line-height: 1.85;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .feature-main {
    text-align: center;
  }

  .feature-shot {
    width: 142px;
    height: 288px;
  }

  .feature-media {
    min-height: 316px;
    margin-top: 18px;
  }

  .feature-note {
    max-width: 168px;
    padding: 11px 14px;
    font-size: 0.76rem;
  }

  .note-ai {
    top: 10px;
    left: 0;
  }

  .note-env {
    right: 28px;
    bottom: 32px;
    max-width: 142px;
  }

  .note-photo {
    top: 92px;
    right: 28px;
    max-width: 132px;
  }

  .note-tide {
    top: 18px;
    right: 22px;
    max-width: 150px;
  }

  .note-weather {
    top: 116px;
    left: 0;
  }

  .note-moon {
    right: 26px;
    bottom: 32px;
  }

  .note-analysis {
    left: 0;
    bottom: 50px;
  }

  .note-trend {
    top: 18px;
    right: 28px;
  }

  .note-point {
    top: 116px;
    left: 0;
  }

  .more-features {
    grid-template-columns: 1fr;
  }

  .more-card {
    min-height: 0;
    padding: 30px 22px;
    border-radius: 24px;
  }

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

  .fish-dummy {
    position: relative;
    right: auto;
    bottom: auto;
    width: 210px;
    margin: 26px auto 0;
  }

  .screen-gallery {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .screen-card .feature-shot {
    width: min(100%, 176px);
    height: 304px;
  }

  .screen-card h3 {
    margin-top: 14px;
    font-size: 0.94rem;
  }

  .screen-card p {
    font-size: 0.78rem;
  }

  .flow-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto 116px auto;
    gap: 14px;
    padding: 26px 22px;
    border-radius: 24px;
  }

  .flow-list {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .flow-item {
    min-height: 0;
    border-radius: 8px;
  }

  .flow-visual {
    width: min(100%, 210px);
    height: 116px;
  }

  .flow-item:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -32px;
    transform: translateX(50%) rotate(90deg);
  }

  .flow-num {
    font-size: 0.76rem;
  }

  .flow-copy {
    min-height: 0;
  }

  .flow-showcase {
    min-height: 430px;
    margin-top: 46px;
    border-radius: 22px;
  }

  .flow-showcase::before {
    inset: 120px auto auto 50%;
    width: 230px;
    height: 230px;
    transform: translateX(-50%);
  }

  .flow-showcase-phone {
    width: 182px;
    height: 340px;
    bottom: 28px;
  }

  .flow-showcase-label {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.72rem;
  }

  .flow-showcase-label.photo {
    top: 28px;
    left: 18px;
  }

  .flow-showcase-label.auto {
    top: 76px;
    right: 18px;
  }

  .flow-showcase-label.review {
    left: 18px;
    bottom: 92px;
  }

  .flow-showcase-label.data {
    right: 18px;
    bottom: 42px;
  }

  .footer-inner {
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-break {
    display: block;
  }
}
