:root {
  color-scheme: light;
  --line: #06c755;
  --line-dark: #05a648;
  --ink: #111827;
  --muted: #5b6472;
  --soft: #f6f8fb;
  --border: #e5e7eb;
  --blue: #2563eb;
  --amber: #d97706;
  --rose: #e11d48;
  --shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 700;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--line);
  color: #fff;
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--line-dark);
}

.btn-secondary {
  border-color: rgba(6, 199, 85, 0.35);
  background: #fff;
  color: #057a39;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #ecfdf3;
  border-color: var(--line);
}

.btn-ghost {
  border-color: var(--border);
  background: #fff;
  color: #374151;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  border-bottom: 1px solid #e8edf3;
  background: #f7faf8;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.44) 67%, rgba(255, 255, 255, 0.12) 100%),
    linear-gradient(180deg, rgba(6, 199, 85, 0.06), rgba(37, 99, 235, 0.08));
  content: "";
  z-index: 1;
}

.hero::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.22;
  z-index: 0;
}

.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

.real-scene {
  pointer-events: none;
}

.hero-mock-scene {
  pointer-events: none;
}

.hero-mock-grid {
  position: absolute;
  top: 108px;
  right: max(12px, calc((100vw - 1120px) / 2 - 92px));
  display: grid;
  width: min(620px, 49vw);
  align-items: end;
  gap: 18px;
  grid-template-columns: minmax(0, 1.5fr) minmax(210px, 0.8fr);
}

.hero-window-mock,
.hero-line-mock,
.hero-line-phone {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.18);
}

.hero-window-mock {
  margin: 0;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #edf2f7;
  background: rgba(248, 250, 252, 0.96);
  padding: 11px 14px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
}

.mock-dot.red {
  background: #fb7185;
}

.mock-dot.yellow {
  background: #fbbf24;
}

.mock-dot.green {
  background: #34d399;
}

.mock-url {
  overflow: hidden;
  margin-left: 7px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-window-body {
  background: #f8fafc;
  padding: 10px;
}

.hero-window-body img {
  width: 100%;
  height: auto;
  aspect-ratio: 1800 / 831;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 6px;
  object-fit: cover;
  object-position: left top;
}

.hero-line-mock {
  align-self: end;
  background: linear-gradient(180deg, #8bb8cb 0%, #78a6bd 100%);
  padding: 12px;
  transform: translateY(42px);
}

.hero-line-phone {
  position: relative;
  align-self: end;
  width: 214px;
  aspect-ratio: 9 / 16;
  margin: 0;
  border: 8px solid #111827;
  border-radius: 30px;
  background: #111827;
  transform: translateY(34px);
}

.hero-line-phone img {
  width: 100%;
  height: calc(100% + 76px);
  object-fit: cover;
  object-position: center top;
  transform: translateY(-42px);
}

.hero-line-header {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 7px;
}

.hero-line-avatar {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--line);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.hero-line-header strong,
.hero-line-header span {
  display: block;
  line-height: 1.25;
}

.hero-line-header strong {
  font-size: 13px;
}

.hero-line-header span {
  margin-top: 2px;
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
}

.hero-line-bubbles {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.hero-bubble {
  width: fit-content;
  max-width: 100%;
  border-radius: 15px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.hero-bubble strong,
.hero-bubble span {
  display: block;
}

.hero-bubble strong {
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 900;
}

.hero-bubble-in {
  background: #fff;
  color: #111827;
}

.hero-bubble-out {
  justify-self: end;
  min-width: 64px;
  background: var(--line);
  color: #fff;
  text-align: center;
}

.hero-bubble-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 10px -12px -10px;
  border-top: 1px solid #e5e7eb;
}

.hero-bubble-actions span {
  padding: 7px 8px;
  color: #057a39;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.hero-bubble-actions span + span {
  border-left: 1px solid #e5e7eb;
  color: #64748b;
}

.product-shot {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.hero-product-primary {
  position: absolute;
  top: 88px;
  right: max(24px, calc((100vw - 1120px) / 2 - 36px));
  width: min(760px, 62vw);
  aspect-ratio: 1800 / 831;
  opacity: 0.74;
  transform: rotate(-1.5deg);
}

.hero-product-secondary {
  position: absolute;
  right: max(10px, calc((100vw - 1120px) / 2 - 60px));
  bottom: 74px;
  width: min(560px, 45vw);
  aspect-ratio: 1800 / 1177;
  opacity: 0.88;
  transform: rotate(3.5deg);
}

.hero-dashboard {
  position: absolute;
  top: 96px;
  right: max(28px, calc((100vw - 1120px) / 2 - 20px));
  width: min(720px, 58vw);
  min-width: 560px;
  transform: rotate(-2deg);
}

.hero-phone {
  position: absolute;
  right: max(18px, calc((100vw - 1120px) / 2 - 52px));
  bottom: 78px;
  width: 266px;
  transform: rotate(4deg);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 700px;
  align-items: center;
  padding: 92px 0 84px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(6, 199, 85, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #057a39;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  content: "";
}

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

h1 {
  margin-top: 18px;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero-lead {
  margin-top: 18px;
  max-width: 570px;
  color: #374151;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
}

.hero-text {
  margin-top: 18px;
  max-width: 590px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  margin-top: 16px;
  color: #6b7280;
  font-size: 12px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 590px;
  margin-top: 34px;
}

.proof-item {
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 14px;
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.proof-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.window,
.phone {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #eef2f7;
  padding: 12px 14px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-dot.red {
  background: #fb7185;
}

.window-dot.yellow {
  background: #fbbf24;
}

.window-dot.green {
  background: #34d399;
}

.window-url {
  margin-left: 8px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 176px 1fr;
  min-height: 388px;
}

.dashboard-sidebar {
  border-right: 1px solid #eef2f7;
  background: #f8fafc;
  padding: 18px 14px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 900;
}

.sidebar-logo span:first-child {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--line);
  color: #fff;
}

.sidebar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  padding: 8px 9px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.sidebar-row.active {
  background: rgba(6, 199, 85, 0.1);
  color: #057a39;
}

.dashboard-main {
  padding: 18px;
}

.dashboard-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: #475569;
  font-size: 12px;
  font-weight: 900;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.kpi {
  border: 1px solid #eef2f7;
  border-radius: 8px;
  background: #fbfdff;
  padding: 12px;
}

.kpi span {
  display: block;
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
}

.kpi strong {
  display: block;
  margin-top: 2px;
  font-size: 20px;
  line-height: 1.1;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid #eef2f7;
  border-radius: 8px;
  padding: 10px;
}

.day {
  min-height: 42px;
  border-radius: 6px;
  background: #f8fafc;
  padding: 5px;
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
}

.stay {
  margin-top: 3px;
  overflow: hidden;
  border-radius: 4px;
  color: #fff;
  padding: 2px 4px;
  font-size: 8px;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.stay.airbnb {
  background: #fb7185;
}

.stay.booking {
  background: #2563eb;
}

.stay.direct {
  background: #10b981;
}

.phone {
  overflow: hidden;
  background: #82a8bd;
  padding: 10px;
}

.phone-screen {
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.line-head {
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #edf2f7;
  padding-bottom: 11px;
}

.line-avatar {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--line);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.line-head strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.line-head span {
  display: block;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
}

.bubble-stack {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.bubble {
  max-width: 92%;
  border-radius: 8px;
  padding: 10px 11px;
  font-size: 11px;
  line-height: 1.55;
}

.bubble.in {
  border: 1px solid #e5e7eb;
  background: #fff;
}

.bubble.out {
  justify-self: end;
  background: var(--line);
  color: #fff;
}

.bubble b {
  display: block;
  color: #057a39;
}

.section {
  padding: 86px 0;
}

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

.section-head {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-kicker {
  color: #057a39;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section h2 {
  margin-top: 8px;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.section-head p {
  margin-top: 13px;
  color: var(--muted);
}

.screen-note {
  display: inline-block;
  margin-top: 4px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}

.pain-grid,
.feature-grid,
.trust-grid {
  display: grid;
  gap: 16px;
}

.pain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 20px;
}

.icon-red {
  background: #fff1f2;
  color: var(--rose);
}

.icon-blue {
  background: #eff6ff;
  color: var(--blue);
}

.icon-amber {
  background: #fffbeb;
  color: var(--amber);
}

.icon-green {
  background: #ecfdf3;
  color: #057a39;
}

.card h3 {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.story-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
  padding: 26px;
}

.featured-story {
  border-color: rgba(6, 199, 85, 0.36);
  box-shadow: 0 18px 42px rgba(6, 199, 85, 0.09);
}

.story-card h3 {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.38;
}

.story-card p {
  margin-top: 13px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.85;
}

.story-result {
  border-left: 3px solid var(--line);
  background: #f6fff9;
  color: #1f2937;
  padding: 12px 14px;
  font-weight: 800;
}

.staff-experience {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: center;
  gap: 34px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(6, 199, 85, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 255, 249, 0.92)),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
  padding: 30px;
}

.staff-copy h3 {
  margin-top: 8px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.32;
}

.staff-copy p:not(.section-kicker) {
  margin-top: 14px;
  color: #4b5563;
}

.persona-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.persona-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #dbe7df;
  border-radius: 8px;
  background: #fff;
  padding: 13px;
}

.persona-avatar {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #dcfce7;
  color: #057a39;
  font-weight: 900;
}

.persona-avatar.owner {
  background: #eff6ff;
  color: var(--blue);
}

.persona-card strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
}

.persona-card span:not(.persona-avatar) {
  display: block;
  margin-top: 2px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.phone-showcase {
  position: relative;
  width: min(100%, 520px);
  min-height: clamp(390px, 43vw, 500px);
  margin: 0 auto;
  isolation: isolate;
}

.phone-frame {
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  width: clamp(196px, 17vw, 238px);
  aspect-ratio: 9 / 16;
  margin: 0;
  border: 9px solid #111827;
  border-radius: 34px;
  background: #111827;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.22);
}

.phone-frame img {
  width: 100%;
  height: calc(100% + 120px);
  object-fit: cover;
  object-position: center top;
  transform: translateY(-76px);
}

.phone-frame-admin img {
  height: calc(100% + 96px);
  transform: translateY(-58px);
}

.phone-frame figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111827;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
}

.phone-frame-back {
  left: 58%;
  opacity: 0.78;
  z-index: 1;
  transform: translate(-50%, -50%) rotate(5deg) scale(0.94);
}

.phone-frame-front {
  left: 42%;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(-4deg);
}

.feature-list {
  display: grid;
  gap: 42px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 42px;
}

.feature-row:nth-child(even) {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.feature-row:nth-child(even) .feature-copy {
  order: 2;
}

.feature-copy h3 {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.32;
}

.feature-copy p {
  margin-top: 14px;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 9px;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
}

.check-list li::before {
  flex: 0 0 auto;
  color: #057a39;
  content: "✓";
  font-weight: 900;
}

.visual {
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  padding: 22px;
}

.screenshot-card {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  padding: 0;
}

.screenshot-card-tall {
  aspect-ratio: 16 / 11;
}

.screenshot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.calendar-demo {
  align-self: stretch;
  overflow: hidden;
  padding: 18px;
}

.calendar-demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.calendar-demo-top span {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
}

.calendar-demo-top strong {
  display: block;
  margin-top: 2px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.calendar-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  padding: 4px;
}

.calendar-tabs button {
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #475569;
  cursor: pointer;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
}

.calendar-tabs button:hover,
.calendar-tabs button:focus-visible {
  color: var(--ink);
}

.calendar-tabs button.active,
.calendar-tabs button[aria-pressed="true"] {
  background: var(--line);
  color: #fff;
  box-shadow: 0 8px 18px rgba(6, 199, 85, 0.22);
}

.calendar-demo-status {
  min-height: 44px;
  margin-top: 12px;
  border-radius: 8px;
  background: #f8fafc;
  color: #475569;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.calendar-demo-status span {
  display: none;
}

.calendar-demo[data-filter="all"] [data-summary-for="all"],
.calendar-demo[data-filter="airbnb"] [data-summary-for="airbnb"],
.calendar-demo[data-filter="booking"] [data-summary-for="booking"],
.calendar-demo[data-filter="direct"] [data-summary-for="direct"] {
  display: block;
}

.calendar-demo-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
}

.calendar-demo-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.calendar-demo-legend i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.legend-airbnb {
  background: #fb7185;
}

.legend-booking {
  background: #2563eb;
}

.legend-direct {
  background: #10b981;
}

.calendar-demo-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-top: 12px;
}

.calendar-weekday {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.calendar-day {
  min-height: 58px;
  overflow: hidden;
  border: 1px solid #edf2f7;
  border-radius: 7px;
  background: #fff;
  padding: 5px;
  transition: background 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.calendar-day.muted {
  background: #f8fafc;
  opacity: 0.6;
}

.calendar-day strong {
  display: block;
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.calendar-booking {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  border-radius: 5px;
  color: #fff;
  padding: 3px 5px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: transform 160ms ease, opacity 160ms ease;
}

.calendar-booking.airbnb {
  background: #fb7185;
}

.calendar-booking.booking {
  background: #2563eb;
}

.calendar-booking.direct {
  background: #10b981;
}

.calendar-demo[data-filter="airbnb"] .calendar-booking:not([data-source="airbnb"]),
.calendar-demo[data-filter="booking"] .calendar-booking:not([data-source="booking"]),
.calendar-demo[data-filter="direct"] .calendar-booking:not([data-source="direct"]) {
  display: none;
}

.calendar-demo[data-filter="airbnb"] .calendar-day {
  background: #fff7f8;
}

.calendar-demo[data-filter="booking"] .calendar-day {
  background: #f8fbff;
}

.calendar-demo[data-filter="direct"] .calendar-day {
  background: #f5fff9;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.screen-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  padding: 10px;
}

.screen-panel-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  align-items: center;
  gap: 18px;
}

.screen-panel-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9.5;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  background: #eef3f8;
}

.screen-panel-wide .screen-panel-media {
  aspect-ratio: 16 / 7.8;
}

.screen-panel-media::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 26px;
  border-bottom: 1px solid #e2e8f0;
  background:
    radial-gradient(circle at 13px 13px, #f87171 0 3px, transparent 3.5px),
    radial-gradient(circle at 27px 13px, #fbbf24 0 3px, transparent 3.5px),
    radial-gradient(circle at 41px 13px, #34d399 0 3px, transparent 3.5px),
    #fff;
  content: "";
}

.screen-panel-media img {
  position: absolute;
  top: 36px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 46px);
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  filter: contrast(1.04) saturate(1.04);
  object-fit: contain;
  object-position: center top;
}

.screen-panel:not(.screen-panel-wide) .screen-panel-media {
  aspect-ratio: 16 / 8.8;
}

.screen-panel:not(.screen-panel-wide) .screen-panel-media img {
  height: auto;
  max-width: none;
  object-fit: initial;
  object-position: initial;
  transform: scale(1.24);
  transform-origin: left top;
}

.screen-panel-copy {
  padding: 16px 10px 10px;
}

.screen-panel-wide .screen-panel-copy {
  padding: 12px 10px;
}

.screen-panel h3 {
  font-size: 18px;
  font-weight: 900;
}

.screen-panel p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.mini-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: #475569;
  font-size: 12px;
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
  padding: 10px;
  font-size: 12px;
  font-weight: 800;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 900;
}

.tag.airbnb {
  background: #fff1f2;
  color: var(--rose);
}

.tag.booking {
  background: #eff6ff;
  color: var(--blue);
}

.tag.direct {
  background: #ecfdf3;
  color: #057a39;
}

.status-ok {
  color: #057a39;
}

.status-warn {
  color: var(--amber);
}

.chart {
  display: flex;
  height: 176px;
  align-items: end;
  gap: 12px;
  border-bottom: 1px solid #e5e7eb;
  padding-top: 16px;
}

.bar-wrap {
  display: grid;
  height: 100%;
  flex: 1;
  gap: 8px;
  grid-template-rows: 1fr auto;
  align-items: end;
  text-align: center;
}

.bar {
  width: 100%;
  align-self: end;
  border-radius: 6px 6px 0 0;
  background: var(--line);
}

.bar-wrap span {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.revenue-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.metric {
  border-radius: 8px;
  background: #f8fafc;
  padding: 11px;
}

.metric span {
  display: block;
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
}

.metric strong {
  display: block;
  margin-top: 2px;
  font-size: 15px;
}

.comparison {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.comparison table {
  min-width: 700px;
}

th,
td {
  border-bottom: 1px solid #edf2f7;
  padding: 14px 16px;
  text-align: left;
  vertical-align: middle;
}

thead th {
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

tbody td {
  font-size: 14px;
}

.center {
  text-align: center;
}

.ok {
  color: #057a39;
  font-weight: 900;
}

.no {
  color: var(--rose);
  font-weight: 900;
}

.maybe {
  color: var(--amber);
  font-weight: 900;
}

.pricing-principles {
  max-width: 860px;
  margin: 0 auto 36px;
  padding: 28px 32px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.pricing-principles > h3 {
  margin: 0 0 18px;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.principle-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.principle-list > li {
  position: relative;
  padding-left: 26px;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--muted);
}

.principle-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--line);
  box-shadow: 0 0 0 4px rgba(6, 199, 85, 0.14);
}

.principle-list > li > strong {
  display: inline;
  color: var(--ink);
  font-weight: 800;
  margin-right: 6px;
}

@media (max-width: 720px) {
  .pricing-principles {
    padding: 22px 20px;
    border-radius: 14px;
  }
  .principle-list > li {
    padding-left: 22px;
    font-size: 0.93rem;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 30px;
}

.price-card.featured {
  border: 2px solid var(--line);
  box-shadow: 0 16px 34px rgba(6, 199, 85, 0.14);
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  background: #ecfdf3;
  color: #057a39;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 900;
}

.badge.dark {
  background: #111827;
  color: #fff;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 16px;
}

.price .yen {
  color: #64748b;
  font-size: 16px;
  font-weight: 900;
}

.price strong {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.price span:last-child {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.price-note {
  margin-top: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.price-card .btn {
  width: 100%;
  margin-top: 24px;
}

.small-note {
  color: #64748b;
  font-size: 12px;
}

.setup-grid,
.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--line);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 0;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  color: #64748b;
  content: "+";
  font-size: 20px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  border-top: 1px solid #edf2f7;
  padding: 16px 20px 20px;
  color: var(--muted);
  font-size: 14px;
}

.cta {
  background: #0f172a;
  color: #fff;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
}

.cta h2 {
  color: #fff;
}

.cta p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #fff;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #f8fafc;
  padding: 34px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 14px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 700;
}

.footer-meta {
  color: #64748b;
  font-size: 12px;
  text-align: right;
}

.legal-main {
  max-width: 860px;
  padding: 56px 0 80px;
}

.legal-main h1 {
  margin: 0;
  font-size: 36px;
}

.legal-main h2 {
  margin: 34px 0 10px;
  font-size: 20px;
}

.legal-main p,
.legal-main li,
.legal-main dd {
  color: #374151;
  font-size: 14px;
}

.legal-main ul,
.legal-main ol {
  margin: 10px 0 0;
  padding-left: 22px;
}

.legal-list {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 28px;
}

.legal-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding: 16px;
}

.legal-row:nth-child(odd) {
  background: #f8fafc;
}

.legal-row:last-child {
  border-bottom: 0;
}

.legal-row dt {
  font-weight: 900;
}

.legal-row dd {
  margin: 0;
}

@media (max-width: 980px) {
  .header-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    display: none;
    border-bottom: 1px solid var(--border);
    background: #fff;
    padding: 18px 24px 22px;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  }

  .header-nav.open {
    display: grid;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 48%, rgba(255, 255, 255, 0.62) 100%),
      linear-gradient(180deg, rgba(6, 199, 85, 0.08), rgba(37, 99, 235, 0.09));
  }

  .hero-content {
    min-height: 840px;
    align-items: start;
    padding: 72px 0 360px;
  }

  .hero-mock-grid {
    top: auto;
    right: 24px;
    bottom: 44px;
    width: min(720px, calc(100vw - 48px));
    grid-template-columns: minmax(0, 1.35fr) minmax(210px, 0.78fr);
  }

  h1 {
    font-size: 54px;
  }

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

  .hero-product-primary {
    top: auto;
    right: 24px;
    bottom: 50px;
    width: 690px;
    max-width: none;
    min-width: 690px;
    opacity: 0.95;
  }

  .hero-product-secondary {
    right: 18px;
    bottom: 34px;
    width: 390px;
    max-width: none;
    opacity: 0.88;
  }

  .pain-grid,
  .pricing-grid,
  .setup-grid,
  .story-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-row,
  .feature-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .staff-experience {
    grid-template-columns: 1fr;
  }

  .phone-showcase {
    min-height: 430px;
  }

  .feature-row:nth-child(even) .feature-copy {
    order: 0;
  }

  .cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    min-height: 60px;
  }

  .brand small {
    display: none;
  }

  .header-actions .btn-primary {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .header-nav {
    inset: 60px 0 auto 0;
  }

  .hero-content {
    min-height: 820px;
    padding: 54px 0 340px;
  }

  .hero-mock-grid {
    right: 12px;
    bottom: 30px;
    width: calc(100vw - 24px);
    gap: 10px;
    grid-template-columns: minmax(0, 1.04fr) minmax(140px, 0.82fr);
  }

  .mock-bar {
    gap: 5px;
    padding: 8px 9px;
  }

  .mock-dot {
    width: 8px;
    height: 8px;
  }

  .mock-url {
    max-width: 118px;
    font-size: 9px;
  }

  .hero-window-body {
    padding: 6px;
  }

  .hero-line-mock {
    padding: 9px;
    transform: translateY(16px);
  }

  .hero-line-phone {
    width: min(150px, 38vw);
    border-width: 6px;
    border-radius: 24px;
    transform: translateY(12px);
  }

  .hero-line-phone img {
    height: calc(100% + 56px);
    transform: translateY(-30px);
  }

  .hero-line-header {
    gap: 7px;
    padding: 8px;
  }

  .hero-line-avatar {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    font-size: 12px;
  }

  .hero-line-header strong {
    font-size: 11px;
  }

  .hero-line-header span {
    font-size: 9px;
  }

  .hero-line-bubbles {
    gap: 8px;
    margin-top: 9px;
  }

  .hero-bubble {
    border-radius: 12px;
    padding: 8px 9px;
    font-size: 10px;
  }

  .hero-bubble strong {
    font-size: 10px;
  }

  .hero-bubble-actions {
    margin: 8px -9px -8px;
  }

  .hero-bubble-actions span {
    padding: 6px;
    font-size: 10px;
  }

  .hero-bubble-in.compact {
    display: none;
  }

  h1 {
    font-size: 40px;
    line-height: 1.08;
  }

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

  .hero-text {
    font-size: 15px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-product-primary {
    right: -228px;
    bottom: 54px;
    width: 620px;
    min-width: 620px;
  }

  .hero-product-secondary {
    right: 14px;
    bottom: 30px;
    width: 280px;
  }

  .section {
    padding: 62px 0;
  }

  .section h2 {
    font-size: 28px;
  }

  .pain-grid,
  .pricing-grid,
  .setup-grid,
  .story-grid,
  .trust-grid,
  .screen-gallery,
  .revenue-summary {
    grid-template-columns: 1fr;
  }

  .screen-panel-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .card,
  .price-card,
  .story-card,
  .staff-experience,
  .visual {
    padding: 20px;
  }

  .staff-copy h3 {
    font-size: 24px;
  }

  .phone-showcase {
    width: 100%;
    min-height: clamp(300px, 82vw, 340px);
    margin-top: 8px;
  }

  .phone-frame {
    width: clamp(138px, 42vw, 164px);
    border-width: 6px;
    border-radius: 24px;
  }

  .phone-frame-front {
    left: 42%;
    transform: translate(-50%, -50%) rotate(-5deg);
  }

  .phone-frame-back {
    left: 61%;
    transform: translate(-50%, -50%) rotate(5deg) scale(0.92);
  }

  .phone-frame img {
    height: calc(100% + 86px);
    transform: translateY(-54px);
  }

  .phone-frame-admin img {
    height: calc(100% + 70px);
    transform: translateY(-42px);
  }

  .screenshot-card {
    padding: 0;
  }

  .calendar-demo-top {
    align-items: stretch;
    flex-direction: column;
  }

  .calendar-tabs {
    width: 100%;
  }

  .calendar-tabs button {
    flex: 1 1 calc(50% - 4px);
  }

  .calendar-demo-grid {
    gap: 4px;
  }

  .calendar-day {
    min-height: 50px;
    padding: 4px;
  }

  .calendar-booking {
    padding: 3px 4px;
    font-size: 8px;
  }

  .screen-panel-wide .screen-panel-media,
  .screen-panel:not(.screen-panel-wide) .screen-panel-media {
    aspect-ratio: 16 / 10.8;
  }

  .price strong {
    font-size: 46px;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta .hero-actions {
    margin-top: 24px;
  }

  .legal-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
