:root {
  --ink: #12181d;
  --muted: #5d6872;
  --paper: #f4f6f2;
  --panel: #ffffff;
  --line: #d9ded9;
  --green: #24a06d;
  --green-dark: #0f6844;
  --sun: #ffc75a;
  --blue: #2579bd;
  --rose: #d25563;
  --black: #07100d;
  --shadow: 0 24px 64px rgba(20, 34, 29, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  background: var(--paper);
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 32, 38, .09);
  background: rgba(244, 246, 242, .84);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,0)),
    var(--green);
  font-size: 15px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,0)),
    var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  background: transparent;
  color: var(--green-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 64px));
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(320px, 520px);
  gap: clamp(24px, 5vw, 72px);
  justify-content: center;
  align-items: center;
  padding: clamp(64px, 9vw, 104px) clamp(18px, 5vw, 72px) clamp(42px, 7vw, 72px);
  color: #fff;
  background:
    radial-gradient(ellipse at 72% 18%, rgba(36, 160, 109, .32), transparent 32%),
    linear-gradient(120deg, rgba(4, 13, 12, .96), rgba(8, 26, 25, .91) 48%, rgba(10, 19, 25, .88)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 84px);
}

.hero--visual {
  min-height: min(860px, calc(100vh - 64px));
  background:
    linear-gradient(90deg, rgba(4, 12, 12, .94) 0%, rgba(4, 12, 12, .82) 34%, rgba(4, 12, 12, .34) 68%, rgba(4, 12, 12, .20) 100%),
    radial-gradient(ellipse at 20% 40%, rgba(36, 160, 109, .36), transparent 30%),
    url("./hoterich-hero.png") center right / cover no-repeat;
}

.hero--visual .hero-inner {
  padding: clamp(10px, 2vw, 28px) 0;
}

.hero--visual h1 {
  background: linear-gradient(90deg, #fff 0%, #dfffee 48%, #ffc75a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero--visual .lead {
  color: rgba(255,255,255,.94);
  text-shadow: 0 8px 28px rgba(0,0,0,.35);
}

.hero--travel {
  position: relative;
  overflow: hidden;
  min-height: min(860px, calc(100vh - 64px));
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(320px, 470px);
  gap: clamp(24px, 5vw, 72px);
  justify-content: center;
  align-items: center;
  padding: clamp(64px, 9vw, 104px) clamp(18px, 5vw, 72px) clamp(92px, 10vw, 132px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(24, 36, 34, .84) 0%, rgba(24, 36, 34, .62) 42%, rgba(24, 36, 34, .12) 100%),
    radial-gradient(ellipse at 18% 42%, rgba(255, 199, 90, .30), transparent 30%),
    url("./hoterich-travel-hero.png") center right / cover no-repeat;
}

.hero--travel .network-canvas {
  opacity: .16;
}

.hero--travel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(244, 246, 242, .92));
}

.hero--travel h1 {
  color: #fff;
  text-shadow: 0 12px 44px rgba(42, 23, 9, .34);
}

.hero--travel .eyebrow {
  color: #ffe1a0;
}

.hero--travel .lead {
  color: rgba(255,255,255,.95);
  text-shadow: 0 8px 28px rgba(42, 23, 9, .34);
}

.travel-card-deck {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 12px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 30px 90px rgba(42, 23, 9, .28);
  backdrop-filter: blur(18px);
  transform: rotate(1.2deg);
}

.travel-card-deck .deck-top {
  margin: 0;
  padding: 16px 18px;
  color: rgba(28, 49, 45, .70);
  background: rgba(255, 255, 255, .72);
  border-bottom: 1px solid rgba(28, 49, 45, .10);
}

.travel-card-deck .deck-top strong {
  color: #f19b35;
  font-size: 28px;
}

.stay-preview-photo {
  min-height: 250px;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.18)),
    linear-gradient(135deg, rgba(255,255,255,.28), transparent),
    url("./hoterich-travel-hero.png") center / cover no-repeat;
}

.stay-preview-body {
  padding: 22px;
  color: var(--ink);
}

.stay-preview-body h2 {
  font-size: 25px;
}

.stay-preview-body p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-weight: 700;
}

.stay-preview-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.stay-preview-buttons span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.stay-preview-buttons span:nth-child(1) { background: #76ae25; }
.stay-preview-buttons span:nth-child(2) { background: #ff7a15; }
.stay-preview-buttons span:nth-child(3) { background: #b8860b; }
.stay-preview-buttons span:nth-child(4) { background: #5392f9; }

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #f8d77d;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 950;
  text-shadow: 0 18px 70px rgba(36, 160, 109, .32);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  font-size: 21px;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 2vw, 21px);
}

.network-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: .32;
}

.hero--lab::after {
  content: "";
  position: absolute;
  inset: auto -8% -22% -8%;
  z-index: 1;
  height: 44%;
  background:
    linear-gradient(180deg, transparent, rgba(36, 160, 109, .12)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 1px, transparent 1px 52px);
  transform: perspective(640px) rotateX(58deg);
  transform-origin: center bottom;
}

.command-deck {
  position: relative;
  z-index: 2;
  align-self: center;
  min-height: 470px;
  padding: 22px;
  border: 1px solid rgba(187, 255, 226, .26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.24), rgba(255,255,255,.06)),
    rgba(7, 16, 13, .46);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, .36),
    inset 0 1px 0 rgba(255,255,255,.25);
  backdrop-filter: blur(18px);
}

.hero-ribbon {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 1320px;
  margin-inline: auto;
}

.hero-ribbon span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
}

.command-deck::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px;
}

.deck-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(226, 255, 244, .72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.deck-top strong {
  color: var(--sun);
  font-size: 36px;
  letter-spacing: 0;
}

.signal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  margin: 10px 0;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.86);
}

.signal-row.active {
  border-color: rgba(36, 224, 151, .55);
  background: rgba(36, 160, 109, .16);
  box-shadow: 0 0 32px rgba(36, 160, 109, .16);
}

.signal-row span {
  font-weight: 900;
}

.signal-row b {
  color: var(--sun);
  font-size: 12px;
}

.deck-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 30px 0 18px;
}

.deck-diagram::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--sun));
  box-shadow: 0 0 22px rgba(36, 160, 109, .55);
}

.deck-diagram i {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgba(226, 255, 244, .28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36,160,109,.78), rgba(37,121,189,.48)),
    rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
}

.command-deck p {
  margin: 0;
  color: rgba(226, 255, 244, .74);
  font-weight: 800;
}

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

.section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section.alt {
  background: #eef2ec;
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

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

.product-card,
.feature,
.price-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.78)),
    var(--panel);
  box-shadow: 0 10px 28px rgba(28, 45, 36, .07);
}

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 22px;
}

.product-card::after,
.feature::after,
.price-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,.56) 48%, transparent 56%);
  transform: translateX(-130%);
  animation: scanline 8s ease-in-out infinite;
}

.feature,
.price-panel {
  position: relative;
  overflow: hidden;
}

@keyframes scanline {
  0%, 58% { transform: translateX(-130%); }
  74%, 100% { transform: translateX(130%); }
}

.product-card.live {
  border-color: rgba(47, 125, 85, .38);
  box-shadow: var(--shadow);
}

.product-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.product-card:nth-child(2) .product-icon {
  background: var(--blue);
}

.product-card:nth-child(3) .product-icon {
  background: var(--rose);
}

.product-card:nth-child(4) .product-icon {
  background: #8a6b2e;
}

.product-card p,
.feature p,
.price-panel p {
  color: var(--muted);
}

.product-card a {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #e4efe7;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.mockup-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.hotel-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 38, .13);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.hotel-photo {
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(36, 82, 61, .12), rgba(242, 184, 75, .24)),
    linear-gradient(150deg, #cde0dc 0 38%, #8db0a1 38% 58%, #e8d2a1 58% 100%);
  position: relative;
}

.hotel-card::before {
  content: "BLOCK PREVIEW";
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(7, 16, 13, .72);
  color: #dfffee;
  font-size: 11px;
  font-weight: 900;
}

.hotel-photo::before,
.hotel-photo::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .72);
}

.hotel-photo::before {
  left: 10%;
  bottom: 0;
  width: 44%;
  height: 66%;
  border-radius: 8px 8px 0 0;
  box-shadow: 70px 18px 0 rgba(255,255,255,.5);
}

.hotel-photo::after {
  right: 11%;
  bottom: 18%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(242, 184, 75, .9);
}

.hotel-body {
  padding: 22px;
}

.hotel-name {
  font-size: 24px;
  font-weight: 900;
}

.hotel-meta {
  margin: 8px 0 16px;
  color: var(--muted);
}

.hotel-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hotel-buttons span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}

.hotel-buttons span:nth-child(1) { background: #76ae25; }
.hotel-buttons span:nth-child(2) { background: #ff7a15; }
.hotel-buttons span:nth-child(3) { background: #00753a; }
.hotel-buttons span:nth-child(4) { background: #ff0033; }
.hotel-buttons span:nth-child(5) { background: #b8860b; }
.hotel-buttons span:nth-child(6) { background: #5392f9; }

.feature {
  padding: 22px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: start;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.price-panel {
  padding: 24px;
}

.price {
  margin: 12px 0;
  font-size: 34px;
  font-weight: 900;
}

.footer {
  padding: 32px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 880px) {
  .nav {
    display: none;
  }

  .grid,
  .mockup-band,
  .two-col,
  .hero,
  .hero--travel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

  .command-deck {
    min-height: 360px;
  }

  .hero--visual {
    background:
      linear-gradient(180deg, rgba(4, 12, 12, .92) 0%, rgba(4, 12, 12, .76) 54%, rgba(4, 12, 12, .46) 100%),
      url("./hoterich-hero.png") center top / cover no-repeat;
  }

  .hero--travel {
    min-height: 780px;
    padding-bottom: 42px;
    background:
      linear-gradient(180deg, rgba(24, 36, 34, .86) 0%, rgba(24, 36, 34, .60) 54%, rgba(24, 36, 34, .28) 100%),
      url("./hoterich-travel-hero.png") center top / cover no-repeat;
  }

  .hero-ribbon {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 6px;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hotel-buttons {
    grid-template-columns: 1fr 1fr;
  }

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

.lp-hero {
  position: relative;
  overflow: hidden;
  min-height: min(840px, calc(100vh - 64px));
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(300px, 420px);
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(68px, 9vw, 108px) clamp(18px, 5vw, 72px);
  color: #fff;
}

.lp-hero--suite {
  background:
    linear-gradient(100deg, rgba(4, 12, 12, .96) 0%, rgba(4, 17, 15, .90) 48%, rgba(12, 39, 52, .72) 100%),
    radial-gradient(ellipse at 78% 24%, rgba(37, 121, 189, .46), transparent 34%),
    url("./hoterich-hero.png") center right / cover no-repeat;
}

.lp-hero--hoterich {
  background:
    linear-gradient(100deg, rgba(28, 34, 32, .92) 0%, rgba(30, 47, 42, .76) 48%, rgba(30, 47, 42, .26) 100%),
    radial-gradient(ellipse at 20% 46%, rgba(255, 199, 90, .32), transparent 30%),
    url("./hoterich-travel-hero.png") center right / cover no-repeat;
}

.lp-hero__content {
  position: relative;
  z-index: 2;
}

.suite-console,
.htr-live-card,
.sample-panel,
.htr-output-card,
.htr-panels article {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 28px 90px rgba(13, 28, 24, .28);
  backdrop-filter: blur(18px);
}

.suite-console {
  padding: 22px;
  color: var(--ink);
  max-width: 420px;
}

.suite-console__top,
.sample-panel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.suite-console__top strong,
.sample-panel__bar b {
  color: var(--green-dark);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.suite-signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  margin: 10px 0;
  padding: 12px 14px;
  border: 1px solid rgba(18, 24, 29, .10);
  border-radius: 8px;
  background: rgba(255,255,255,.68);
}

.suite-signal--on {
  border-color: rgba(36, 160, 109, .45);
  background: #edf8f1;
}

.suite-signal b {
  font-size: 18px;
}

.suite-signal span {
  color: var(--muted);
  font-weight: 800;
}

.suite-metrics,
.sample-grid,
.hotel-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.suite-metrics span,
.suite-metrics strong,
.sample-grid span,
.hotel-chip-grid span {
  display: grid;
  place-items: center;
  min-height: 40px;
  border-radius: 8px;
  background: #eef2ec;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.lp-showcase,
.htr-output-stage {
  width: min(1040px, 100%);
  margin-inline: auto;
}

.lp-showcase {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.sample-panel {
  padding: 20px;
  color: var(--ink);
}

.mini-hotel-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
}

.mini-hotel-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.mini-hotel-card h3,
.mini-hotel-card p {
  margin: 0 0 8px;
}

.mini-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.mini-buttons span {
  display: grid;
  place-items: center;
  min-height: 32px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.htr-live-card {
  overflow: hidden;
  color: var(--ink);
  transform: rotate(1deg);
  max-width: 420px;
}

.htr-live-card__image {
  position: relative;
  min-height: 260px;
}

.htr-live-card__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.htr-live-card__image span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.htr-live-card__body,
.htr-output-card__body {
  padding: 22px;
}

.htr-live-card h2,
.htr-output-card h3 {
  font-size: 26px;
}

.htr-live-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.htr-live-card dl div {
  padding: 10px;
  border-radius: 8px;
  background: #eef2ec;
}

.htr-live-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.htr-live-card dd {
  margin: 0;
  font-weight: 900;
}

.htr-ota-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.htr-ota-buttons--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.htr-ota-buttons span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.htr-ota-buttons span:nth-child(1) { background: #76ae25; }
.htr-ota-buttons span:nth-child(2) { background: #ff7a15; }
.htr-ota-buttons span:nth-child(3) { background: #e87722; }
.htr-ota-buttons span:nth-child(4) { background: #ff0033; }
.htr-ota-buttons span:nth-child(5) { background: #c81528; }
.htr-ota-buttons span:nth-child(6) { background: #bf9500; }
.htr-ota-buttons span:nth-child(7) { background: #0b499d; }
.htr-ota-buttons span:nth-child(8) { background: #5392f9; }

.htr-output-stage {
  display: grid;
  gap: 18px;
}

.htr-output-card {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  overflow: hidden;
  color: var(--ink);
  background: #fff;
}

.htr-output-card__media {
  position: relative;
  min-height: 360px;
}

.htr-output-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.htr-output-card__media a {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(255,255,255,.90);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.htr-facts {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.htr-facts div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9f5;
}

.htr-facts span {
  color: var(--green-dark);
  font-weight: 900;
}

.htr-facts p {
  margin: 0;
  color: var(--muted);
}

.htr-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1040px, 100%);
  margin-inline: auto;
}

.htr-panels article {
  padding: 20px;
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.chart-demo {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 150px;
  margin: 12px 0;
  padding: 14px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, #edf1eb 0 1px, transparent 1px 30px),
    #f8faf6;
}

.chart-demo i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.mini-table {
  width: 100%;
  margin: 12px 0;
  border-collapse: collapse;
  font-size: 13px;
}

.mini-table th,
.mini-table td {
  padding: 9px;
  border: 1px solid var(--line);
  text-align: left;
}

.pro-panel .button {
  margin-top: 14px;
}

@media (max-width: 880px) {
  .lp-hero,
  .lp-showcase,
  .htr-output-card,
  .htr-panels {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    min-height: auto;
  }

  .htr-live-card {
    transform: none;
  }

  .htr-ota-buttons--wide,
  .suite-metrics,
  .sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .mini-hotel-card,
  .htr-live-card dl,
  .htr-ota-buttons,
  .htr-ota-buttons--wide,
  .hotel-chip-grid {
    grid-template-columns: 1fr;
  }

  .htr-facts div {
    grid-template-columns: 1fr;
  }
}
