:root {
  --navy: #1a2b49;
  --ink: #21324d;
  --muted: #5a6b7f;
  --line: rgba(26, 43, 73, 0.14);
  --ivory: #f9f7f4;
  --sand: #e8ddc9;
  --paper: #ffffff;
  --coral: #d4a18c;
  --coral-dark: #b67f6d;
  --seaglass: #9db8b3;
  --blue: #6fa8d9;
  --gold: #c9a76b;
  --shadow: 0 30px 80px rgba(26, 43, 73, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.65;
}

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

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

h1,
h2,
h3,
p,
dl {
  margin-top: 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 34px;
  padding: 18px clamp(24px, 5vw, 86px);
  color: var(--navy);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.86), rgba(255, 250, 242, 0));
}

.brand,
.site-nav,
.header-actions,
.store-actions,
.profile-row,
.chip-row,
.mini-tags,
.app-header,
.location-row,
.filter-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
  font-size: 17px;
}

.brand-name {
  font-size: 23px;
  letter-spacing: 0;
}

.site-nav {
  justify-content: center;
  gap: clamp(20px, 3.3vw, 48px);
  font-size: 14px;
  font-weight: 800;
}

.header-actions {
  justify-content: flex-end;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1px solid rgba(26, 43, 73, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.language-switch a {
  display: inline-flex;
  min-width: 34px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.language-switch a[aria-current="page"] {
  color: #fff;
  background: var(--navy);
}

.header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(237, 73, 60, 0.25);
}

.hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  background: #eaf7ff;
}

.hero-bg,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.84) 38%, rgba(255, 250, 242, 0.2) 72%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.18) 0%, rgba(255, 250, 242, 0.08) 54%, var(--ivory) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.68fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
  width: min(1360px, calc(100% - 48px));
  min-height: 830px;
  margin: 0 auto;
  padding: 118px 0 0;
}

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

.brand-line {
  margin-bottom: 48px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 750;
}

h1 {
  margin-bottom: 28px;
  color: var(--navy);
  font-size: clamp(62px, 7.8vw, 104px);
  line-height: 1.09;
  letter-spacing: 0;
}

.mobile-title {
  display: none;
}

.mobile-break {
  display: none;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(18px, 1.9vw, 23px);
  font-weight: 700;
  line-height: 1.9;
}

.store-actions {
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  min-width: 170px;
  min-height: 54px;
  align-items: center;
  padding: 9px 18px;
  border-radius: 8px;
  color: #fff;
  background: #050b16;
  box-shadow: 0 14px 28px rgba(7, 27, 58, 0.16);
}

.store-icon {
  grid-row: 1 / 3;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.store-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.app-store-icon svg {
  fill: #fff;
}

.play-shape {
  stroke: none;
}

.play-blue {
  fill: #5bb7f6;
}

.play-green {
  fill: #37d07c;
}

.play-yellow {
  fill: #ffd25a;
}

.play-red {
  fill: #ff6b5c;
}

.store-badge strong {
  font-size: 15px;
  line-height: 1.1;
}

.store-badge small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
}

.safe-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  width: min(360px, 100%);
  margin-top: 32px;
  padding: 18px;
  border: 1px solid rgba(7, 27, 58, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(7, 27, 58, 0.1);
}

.safe-note span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
}

.safe-note p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 13px;
}

.safe-note strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.hero-device {
  position: relative;
  justify-self: center;
  width: min(100%, 440px);
  align-self: end;
}

.trust-badge {
  position: absolute;
  z-index: 4;
  top: 170px;
  right: -46px;
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #54d0c8, #25aaa3);
  box-shadow: 0 22px 50px rgba(37, 170, 163, 0.35);
  text-align: center;
}

.trust-badge span {
  font-size: 30px;
  line-height: 1;
}

.trust-badge strong {
  font-size: 13px;
  line-height: 1.35;
}

.phone {
  border: 8px solid #0b1526;
  border-radius: 46px;
  background: #0b1526;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screenshot-phone {
  background: #fff;
}

.app-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.hero-device .phone {
  max-height: 760px;
}

.hero-device .app-screenshot {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-top {
  position: relative;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  color: #0b1526;
  background: #fff;
  font-size: 13px;
  font-weight: 850;
}

.camera {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 92px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050910;
}

.app-screen {
  padding: 0 22px 24px;
  background: #fff;
}

.discovery-screen {
  padding: 0 18px 20px;
  background: #fff;
}

.map-screen {
  padding: 0 18px 18px;
  background: #fff;
}


.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 2px 18px;
}

.mock-header small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.mock-header strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.1;
}


.mock-header button,
.info-dot {
  border: 0;
  font: inherit;
  cursor: default;
}

.mock-header button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #f1f4f3;
  font-size: 18px;
  font-weight: 900;
}

.swipe-stack {
  position: relative;
  padding-top: 10px;
}

.stack-card {
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 100%;
  border-radius: 32px;
  background: var(--sand);
  transform: rotate(-3deg);
  opacity: 0.62;
}

.swipe-card-mock {
  position: relative;
  min-height: 486px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--navy);
  box-shadow: 0 22px 48px rgba(26, 43, 73, 0.22);
}

.swipe-card-mock > img,
.photo-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.swipe-card-mock > img {
  object-fit: cover;
}

.photo-gradient {
  background:
    linear-gradient(180deg, rgba(26, 43, 73, 0.04) 0%, rgba(26, 43, 73, 0) 44%, rgba(26, 43, 73, 0.9) 100%),
    linear-gradient(90deg, rgba(26, 43, 73, 0.16), rgba(26, 43, 73, 0));
}

.photo-pager {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 22px;
  right: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.photo-pager span {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.photo-pager span.active {
  background: #fff;
}

.badge-row {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 18px;
  right: 62px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.verified-pill,
.context-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.verified-pill {
  background: rgba(157, 184, 179, 0.92);
}

.verified-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

.context-pill {
  color: var(--gold);
  background: rgba(26, 43, 73, 0.72);
}

.info-dot {
  position: absolute;
  z-index: 3;
  top: 34px;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.24);
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.profile-info {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 24px;
  color: #fff;
}

.profile-info h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: 0;
}

.meta-line,
.occupation {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.occupation {
  margin-bottom: 14px;
}

.intention-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.intention-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.swipe-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 16px;
}

.swipe-actions button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: #f1f4f3;
  color: var(--navy);
  font: inherit;
  font-size: 12px;
  font-weight: 950;
}

.swipe-actions button:last-child {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 14px 26px rgba(180, 127, 109, 0.25);
}

.map-layer-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow: hidden;
}

.map-layer-pills span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: #f1f4f3;
  font-size: 12px;
  font-weight: 900;
}

.map-layer-pills span.active {
  color: #fff;
  background: var(--navy);
}

.map-visual,
.story-map-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 43, 73, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 25%, rgba(157, 184, 179, 0.62), transparent 18%),
    radial-gradient(circle at 72% 34%, rgba(212, 161, 140, 0.5), transparent 20%),
    linear-gradient(135deg, #f7f2e9, #e7efee);
}

.map-visual {
  height: 350px;
}

.story-map-visual {
  height: 306px;
  margin-bottom: 14px;
}

.map-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(26, 43, 73, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 43, 73, 0.08) 1px, transparent 1px),
    linear-gradient(30deg, transparent 47%, rgba(26, 43, 73, 0.09) 48%, rgba(26, 43, 73, 0.09) 52%, transparent 53%);
  background-size: 46px 46px, 46px 46px, 180px 180px;
  transform: rotate(-7deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 16px 30px rgba(26, 43, 73, 0.18);
  font-size: 18px;
}

.map-pin strong {
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.map-pin.cafe {
  top: 74px;
  left: 42px;
  background: var(--seaglass);
}

.map-pin.food {
  top: 136px;
  right: 48px;
  background: var(--coral);
}

.map-pin.view {
  right: 90px;
  bottom: 64px;
  background: var(--gold);
}

.map-pin.work {
  left: 82px;
  bottom: 78px;
  background: var(--navy);
}

.map-search {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 154px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(26, 43, 73, 0.1);
  text-align: center;
  font-size: 12px;
  font-weight: 950;
}

.spot-preview-card {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: center;
  margin: -54px 14px 0;
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(26, 43, 73, 0.16);
}

.spot-preview-card img {
  width: 82px;
  height: 92px;
  border-radius: 14px;
  object-fit: cover;
}

.spot-preview-card span,
.question-post-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 950;
}

.spot-preview-card h2 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}

.spot-preview-card p {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.45;
}

.spot-actions {
  display: flex;
  gap: 7px;
}

.spot-actions button {
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  padding: 0 10px;
  color: #fff;
  background: var(--navy);
  font: inherit;
  font-size: 10px;
  font-weight: 950;
}

.spot-actions button:last-child {
  color: var(--navy);
  background: #f1f4f3;
}

.mock-tabbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 14px 2px 0;
  color: rgba(26, 43, 73, 0.42);
  text-align: center;
  font-size: 10px;
  font-weight: 850;
}

.mock-tabbar span.active {
  color: var(--coral);
}

.app-header {
  justify-content: space-between;
  padding: 8px 0 16px;
  color: var(--navy);
}

.chip-row {
  gap: 8px;
  margin-bottom: 24px;
  overflow: hidden;
}

.chip,
.mini-tags span {
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  color: #415a78;
  background: #eef3f7;
  font-size: 12px;
  font-weight: 850;
}

.chip.active {
  color: #fff;
  background: var(--navy);
}

.chip.travel {
  color: #137d77;
  background: #ddf7f4;
}

.location-row {
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.local-card {
  padding: 16px;
  border: 1px solid rgba(7, 27, 58, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(7, 27, 58, 0.08);
}

.profile-row {
  gap: 12px;
  margin-bottom: 14px;
}

.profile-row img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-row h2 {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.profile-row h2 span {
  color: var(--blue);
}

.profile-row p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.profile-row strong {
  color: var(--ink);
  font-size: 12px;
}

.mini-tags {
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.local-note {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.7;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.info-grid span {
  padding: 10px 8px;
  border-radius: 8px;
  color: var(--muted);
  background: #f5f7f8;
  font-size: 10px;
  line-height: 1.35;
}

.info-grid strong {
  color: var(--navy);
  font-size: 11px;
}

.hint-card {
  display: grid;
  grid-template-columns: 1fr 58px;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  padding: 10px;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: #fff8eb;
}

.hint-card strong {
  color: #b2761d;
  font-size: 11px;
}

.hint-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.hint-card img {
  width: 58px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
}

.message-button {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.feature-story,
.experience,
.steps-section,
.premium-section {
  padding: 72px 24px;
  background: #fff;
}

.feature-story {
  background: #fffaf2;
}

.feature-story-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.feature-story-heading {
  max-width: 940px;
  margin-bottom: 42px;
}

.story-kicker {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-story-heading h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.14;
  letter-spacing: 0;
}

.feature-story-heading p {
  max-width: 920px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.85;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px 300px;
  gap: 34px;
  align-items: start;
}

.story-left,
.story-value-stack {
  display: grid;
  gap: 18px;
}

.story-card,
.story-phone {
  border: 1px solid #dde5ec;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 27, 58, 0.08);
}

.story-card {
  padding: 24px;
  border-radius: 16px;
}

.story-card-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.story-icon {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.story-icon.ask {
  color: #16958d;
  background: #e7f7f5;
}

.story-icon.walk {
  background: var(--seaglass);
}

.story-icon.lang {
  background: var(--blue);
}

.story-card small {
  display: block;
  margin-bottom: 2px;
  color: #16958d;
  font-size: 12px;
  font-weight: 900;
}

.story-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.32;
}

.story-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.question-card > p {
  margin-bottom: 18px;
}

.question-example {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 12px;
  background: #f3f7f8;
}

.question-example strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
}

.question-example div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.question-example span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.story-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.story-card.compact {
  min-height: 190px;
}

.story-card.compact .story-icon {
  margin-bottom: 16px;
}

.story-phone {
  padding: 28px 26px;
  border: 8px solid var(--navy);
  border-radius: 44px;
  overflow: hidden;
}

.story-phone-top {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.inline-screenshot {
  width: 100%;
  height: 660px;
  border-radius: 28px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 14px 34px rgba(7, 27, 58, 0.12);
}

.story-phone > h3 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 24px;
}

.story-mock-header {
  padding-top: 0;
}

.story-swipe-card {
  min-height: 430px;
}

.compact-actions {
  padding-top: 14px;
}

.story-ui-note {
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: #f4f1ea;
}

.story-ui-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.45;
}

.story-ui-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.layer-chip {
  position: absolute;
  z-index: 3;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(26, 43, 73, 0.8);
  box-shadow: 0 12px 24px rgba(26, 43, 73, 0.13);
  font-size: 11px;
  font-weight: 950;
}

.layer-chip.following {
  top: 18px;
  left: 18px;
}

.layer-chip.saved {
  right: 18px;
  bottom: 22px;
  background: rgba(201, 167, 107, 0.92);
}

.question-post-card {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid rgba(26, 43, 73, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(26, 43, 73, 0.08);
}

.question-post-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
}

.question-post-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.5;
}

.compact-post {
  background: #f7f3ed;
}

.story-chip-row {
  flex-wrap: wrap;
  overflow: visible;
}

.story-profile {
  padding: 18px;
  border: 1px solid rgba(7, 27, 58, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 27, 58, 0.07);
}

.story-profile > p {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.65;
}

.premium-note {
  border-color: #e8c883;
  background: #fff8ea;
}

.premium-note h3 {
  color: #8b651d;
}

.premium-note p {
  color: #6d5a30;
}

.story-strip {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  margin-top: 34px;
  padding: 28px 34px;
  border-radius: 18px;
  color: #fff;
  background: var(--navy);
}

.story-strip strong {
  font-size: 24px;
}

.story-strip p {
  margin-bottom: 0;
  color: #dce7f1;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.75;
}

.screens-section {
  padding: 76px 24px;
  background: #eef7f5;
}

.screens-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, 0.92fr);
  gap: 24px;
  width: min(1280px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.screen-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(26, 43, 73, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 52px rgba(7, 27, 58, 0.08);
}

.screen-card.primary {
  background: #fffaf2;
}

.compact-phone {
  width: min(100%, 280px);
  max-height: 520px;
  justify-self: center;
  border-width: 6px;
  border-radius: 34px;
}

.compact-phone .app-screenshot {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.screen-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.screen-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.25;
}

.screen-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.concept-tile {
  position: relative;
  display: grid;
  min-height: 360px;
  align-content: end;
  gap: 12px;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  color: var(--navy);
  background:
    radial-gradient(circle at 24% 20%, rgba(212, 161, 140, 0.72), transparent 20%),
    radial-gradient(circle at 78% 30%, rgba(157, 184, 179, 0.8), transparent 22%),
    linear-gradient(135deg, #fffaf2, #eaf5f3);
}

.concept-tile::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(26, 43, 73, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 43, 73, 0.07) 1px, transparent 1px),
    linear-gradient(30deg, transparent 47%, rgba(26, 43, 73, 0.08) 48%, rgba(26, 43, 73, 0.08) 52%, transparent 53%);
  background-size: 46px 46px, 46px 46px, 180px 180px;
  transform: rotate(-8deg);
}

.concept-tile span,
.concept-tile strong {
  position: relative;
  z-index: 1;
}

.concept-tile span {
  width: max-content;
  padding: 10px 14px;
  border: 1px solid rgba(26, 43, 73, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(7, 27, 58, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.concept-tile strong {
  width: min(100%, 260px);
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(7, 27, 58, 0.12);
  font-size: 22px;
  line-height: 1.25;
}

.people-tile {
  background:
    radial-gradient(circle at 22% 25%, rgba(201, 167, 107, 0.7), transparent 18%),
    radial-gradient(circle at 76% 26%, rgba(111, 168, 217, 0.52), transparent 20%),
    linear-gradient(135deg, #fffaf2, #f5eee2);
}

.section-title {
  display: flex;
  width: min(1180px, 100%);
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 34px;
  color: var(--navy);
}

.section-title span {
  width: 58px;
  height: 1px;
  background: rgba(7, 27, 58, 0.22);
}

.section-title h2 {
  margin-bottom: 0;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.3;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1260px, 100%);
  margin: 0 auto;
}

.experience-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(7, 27, 58, 0.06);
}

.experience-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.experience-icon.coral {
  background: var(--coral);
}

.experience-icon.green {
  background: var(--seaglass);
}

.experience-icon.blue {
  background: var(--blue);
}

.experience-text h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 22px;
}

.experience-text p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.experience-card img {
  grid-column: 1 / -1;
  width: 100%;
  height: 230px;
  border-radius: 8px;
  object-fit: cover;
}

.steps-section {
  background: var(--ivory);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.step-card {
  position: relative;
  display: grid;
  gap: 12px;
  text-align: center;
}

.step-card + .step-card::before {
  content: "›";
  position: absolute;
  top: 50px;
  left: -18px;
  color: rgba(7, 27, 58, 0.28);
  font-size: 42px;
}

.step-visual {
  height: 120px;
  border-radius: 18px;
  background: #f3f5f7;
  box-shadow: inset 0 0 0 1px rgba(7, 27, 58, 0.06);
}

.profile-mini {
  background:
    linear-gradient(#fff, #fff) 46% 28% / 48% 8px no-repeat,
    linear-gradient(#e5eaf0, #e5eaf0) 46% 44% / 54% 7px no-repeat,
    radial-gradient(circle at 24% 32%, #c9d6e2 0 18px, transparent 19px),
    #f3f5f7;
}

.search-mini {
  background:
    radial-gradient(circle at 50% 44%, transparent 0 28px, var(--navy) 29px 31px, transparent 32px),
    linear-gradient(45deg, transparent 58%, var(--navy) 59% 62%, transparent 63%),
    #f3f5f7;
}

.chat-mini {
  background:
    linear-gradient(90deg, var(--seaglass), var(--seaglass)) 22% 34% / 48% 18px no-repeat,
    linear-gradient(90deg, #f5c86b, #f5c86b) 72% 56% / 48% 18px no-repeat,
    #f3f5f7;
}

.meet-mini {
  background:
    radial-gradient(circle at 28% 42%, var(--blue) 0 18px, transparent 19px),
    radial-gradient(circle at 68% 42%, var(--coral) 0 18px, transparent 19px),
    linear-gradient(90deg, var(--blue), var(--coral)) 39% 66% / 22% 4px no-repeat,
    #f3f5f7;
}

.step-card strong {
  color: var(--navy);
  font-size: 17px;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.safety-band {
  position: relative;
  overflow: hidden;
  padding: 86px 24px;
  background: #eaf8f7;
}

.safety-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.safety-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.safety-heading {
  max-width: 520px;
  margin-bottom: 42px;
}

.safety-heading h2,
.premium-copy h2,
.final-cta h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.2;
}

.safety-heading p {
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
}

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

.safety-cards article {
  padding: 26px;
  border-left: 1px solid rgba(7, 27, 58, 0.16);
}

.safety-cards span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--seaglass);
  font-weight: 900;
}

.safety-cards h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 21px;
}

.safety-cards p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.premium-section {
  background: var(--ivory);
}

.premium-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr) minmax(260px, 0.42fr);
  gap: 36px;
  align-items: center;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.premium-kicker {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
}

.premium-copy ul,
.upgrade-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-copy li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px 14px;
}

.premium-copy li::before {
  content: "✓";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.premium-copy strong,
.premium-copy span {
  grid-column: 2;
}

.premium-copy strong {
  color: var(--navy);
  font-size: 16px;
}

.premium-copy span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.search-preview,
.upgrade-card {
  border: 1px solid rgba(201, 149, 58, 0.32);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(120, 77, 18, 0.08);
}

.search-preview {
  padding: 22px;
}

.search-box label {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 900;
}

.fake-input {
  margin-bottom: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
}

.filter-row {
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.filter-row span {
  padding: 9px 11px;
  border-radius: 999px;
  background: #f5f3ef;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.mini-profile {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  background: #f8fafb;
}

.mini-profile img {
  width: 84px;
  height: 104px;
  border-radius: 10px;
  object-fit: cover;
}

.mini-profile strong {
  color: var(--navy);
}

.mini-profile small {
  color: var(--seaglass);
}

.mini-profile p,
.mini-profile span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.upgrade-card {
  padding: 28px;
}

.upgrade-card h3 {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 22px;
}

.upgrade-card p {
  color: var(--muted);
  font-weight: 650;
}

.upgrade-card li {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.upgrade-card li::before {
  content: "●";
  margin-right: 8px;
  color: var(--gold);
}

.upgrade-card a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--gold);
  font-weight: 900;
}

.final-cta {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 78px 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.18), rgba(255, 250, 242, 0.82)),
    url("https://images.unsplash.com/photo-1570077188670-e3a8d69ac5ff?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.final-cta p {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
}

.store-actions.center {
  justify-content: center;
}

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

  .site-nav {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 112px 0 52px;
  }

  .hero-device {
    justify-self: start;
    align-self: auto;
  }

  .premium-layout {
    grid-template-columns: 1fr 1fr;
  }

  .screens-grid {
    grid-template-columns: 1fr;
  }

  .screen-card {
    grid-template-columns: minmax(220px, 300px) 1fr;
    grid-template-rows: auto;
    align-items: center;
  }

  .upgrade-card {
    grid-column: 1 / -1;
  }
}

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

  .brand-name {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .language-switch {
    display: inline-flex;
    justify-self: end;
  }

  .language-switch a {
    min-width: 30px;
    min-height: 28px;
    font-size: 11px;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.76) 55%, var(--ivory) 100%),
      linear-gradient(90deg, rgba(255, 250, 242, 0.9), rgba(255, 250, 242, 0.34));
  }

  .hero-inner {
    width: 100%;
    gap: 34px;
    padding: 96px 16px 42px;
  }

  .hero-copy {
    max-width: 358px;
    min-width: 0;
  }

  .brand-line {
    margin-bottom: 28px;
    font-size: 13px;
  }

  h1 {
    font-size: 48px;
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: inline;
  }

  .hero-lead {
    font-size: 16px;
  }

  .store-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-badge {
    width: 100%;
  }

  .safe-note {
    width: 100%;
  }

  .hero-device {
    width: min(100%, 340px);
  }

  .hero-device .phone {
    max-height: 680px;
  }

  .trust-badge {
    display: none;
  }

  .phone {
    border-width: 7px;
    border-radius: 36px;
  }

  .app-screen {
    padding-right: 14px;
    padding-left: 14px;
  }

  .feature-story,
  .experience,
  .steps-section,
  .safety-band,
  .screens-section,
  .premium-section {
    padding: 56px 16px;
  }

  .feature-story-heading h2 {
    max-width: 358px;
    font-size: 31px;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .feature-story-heading p {
    max-width: 358px;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .story-layout,
  .story-mini-grid,
  .story-strip {
    grid-template-columns: 1fr;
  }

  .story-layout > *,
  .story-card-head > div,
  .question-example {
    min-width: 0;
  }

  .story-card,
  .story-phone {
    width: calc(100vw - 32px);
    min-width: 0;
  }

  .story-phone {
    justify-self: center;
    width: min(100%, 340px);
    padding: 24px 18px;
    border-width: 7px;
    border-radius: 36px;
  }

  .inline-screenshot {
    height: 540px;
    border-radius: 24px;
  }

  .screen-card {
    width: calc(100vw - 32px);
    grid-template-columns: 1fr;
  }

  .compact-phone {
    width: min(100%, 250px);
    max-height: 460px;
  }

  .story-swipe-card {
    min-height: 410px;
  }

  .story-phone .profile-info h2 {
    font-size: 32px;
  }

  .story-phone .swipe-actions {
    gap: 10px;
  }

  .story-phone .swipe-actions button {
    font-size: 11px;
  }

  .story-card h3 {
    font-size: 22px;
    overflow-wrap: anywhere;
  }

  .story-card p,
  .question-example strong,
  .story-strip p {
    max-width: 286px;
    overflow-wrap: anywhere;
  }

  .question-example {
    overflow: hidden;
  }

  .question-example {
    padding: 16px;
  }

  .question-example div {
    gap: 6px;
  }

  .question-example span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .story-strip {
    gap: 12px;
    padding: 24px;
  }

  .story-strip strong {
    font-size: 21px;
  }

  .story-strip p {
    font-size: 15px;
  }

  .section-title {
    display: block;
    width: 100%;
  }

  .section-title span {
    display: none;
  }

  .section-title h2 {
    width: 100%;
    font-size: 31px;
    line-height: 1.35;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .chip-row {
    flex-wrap: wrap;
    overflow: visible;
  }

  .chip {
    font-size: 11px;
  }

  .mobile-break {
    display: block;
  }

  .experience-grid,
  .steps-grid,
  .safety-cards,
  .premium-layout {
    grid-template-columns: 1fr;
  }

  .experience-card {
    width: calc(100vw - 32px);
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .experience-icon {
    margin-bottom: 0;
  }

  .experience-card img {
    height: 210px;
  }

  .experience-text p {
    font-size: 13px;
  }

  .experience-text,
  .experience-text h3,
  .experience-text p,
  .section-title h2,
  .local-note,
  .safe-note p {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .step-card + .step-card::before {
    display: none;
  }

  .safety-cards article {
    padding: 22px 0 22px 20px;
  }

  .mini-profile {
    grid-template-columns: 72px 1fr;
  }

  .mini-profile img {
    width: 72px;
    height: 92px;
  }
}
