:root {
  color-scheme: light;
  --ink: #15212b;
  --muted: #637083;
  --line: #dbe4ec;
  --white: #ffffff;
  --mist: #f3f8f7;
  --green: #087f6f;
  --green-soft: #ddf5ef;
  --blue: #2457a6;
  --blue-soft: #e4eefc;
  --rose: #b94362;
  --rose-soft: #ffe5ed;
  --gold: #b97812;
  --gold-soft: #fff0c9;
  --charcoal: #1f303a;
  --shadow: 0 20px 48px rgba(24, 38, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background:
    linear-gradient(90deg, rgba(21, 33, 43, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 33, 43, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbfb 0%, #eef6f4 42%, #fff6df 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.page {
  overflow: hidden;
}

.hero,
.intent-section,
.search-section,
.category-section,
.deep-dive-section,
.workflow-section,
.support-section {
  padding: 76px 24px;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: 46px;
  padding-top: 58px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(8, 127, 111, 0.12), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #eef7f5 100%);
  overflow: hidden;
}

.hero__copy,
.section-heading,
.intent-grid,
.search-diagram,
.category-layout,
.deep-grid,
.workflow,
.support-layout {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.hero__copy {
  justify-self: end;
  margin-right: 0;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(43px, 5.8vw, 78px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.lead {
  margin-top: 26px;
  max-width: 650px;
  color: #334155;
  font-size: 19px;
}

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

.hero__metrics div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(24, 38, 52, 0.08);
}

.hero__metrics b,
.hero__metrics span {
  display: block;
}

.hero__metrics b {
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1;
}

.hero__metrics span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero__board {
  position: relative;
  min-height: 560px;
  border-left: 1px solid rgba(21, 33, 43, 0.1);
  overflow: hidden;
}

.hero__board::before,
.hero__board::after {
  content: "";
  position: absolute;
  border: 3px solid rgba(8, 127, 111, 0.22);
  border-left-color: transparent;
  border-bottom-color: rgba(36, 87, 166, 0.22);
  border-radius: 50%;
}

.hero__board::before {
  inset: 8% 4% 10% 4%;
  transform: rotate(-10deg);
}

.hero__board::after {
  inset: 20% -5% 4% 18%;
  transform: rotate(18deg);
}

.portal-card {
  position: absolute;
  left: 10%;
  top: 20%;
  z-index: 3;
  width: min(460px, 82%);
  padding: 30px;
  border: 1px solid rgba(21, 33, 43, 0.14);
  background: #fff;
  box-shadow: var(--shadow);
}

.portal-card span {
  display: inline-grid;
  min-width: 86px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.portal-card strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(31px, 3.8vw, 46px);
  line-height: 1.1;
}

.portal-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.signal {
  position: absolute;
  z-index: 4;
  padding: 12px 14px;
  border: 3px solid #fff;
  color: #fff;
  background: var(--charcoal);
  box-shadow: 0 12px 26px rgba(24, 38, 52, 0.22);
  font-weight: 900;
}

.signal--one { right: 12%; top: 13%; background: var(--rose); }
.signal--two { right: 4%; top: 47%; background: var(--blue); }
.signal--three { left: 12%; bottom: 9%; background: var(--gold); }
.signal--four { left: 51%; bottom: 20%; background: var(--green); }

.section-heading {
  margin-bottom: 30px;
}

.section-heading--dark .eyebrow,
.section-heading--dark h2 {
  color: #fff;
}

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

.intent-card,
.search-hub,
.search-paths article,
.category-card,
.deep-card,
.workflow article,
.support-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(24, 38, 52, 0.09);
}

.intent-card {
  min-height: 288px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.intent-card--green { border-top: 8px solid var(--green); background: linear-gradient(180deg, var(--green-soft), #fff 58%); }
.intent-card--blue { border-top: 8px solid var(--blue); background: linear-gradient(180deg, var(--blue-soft), #fff 58%); }
.intent-card--gold { border-top: 8px solid var(--gold); background: linear-gradient(180deg, var(--gold-soft), #fff 58%); }

.intent-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.search-section,
.workflow-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #17212b 0%, #223848 50%, #0b6d65 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.search-diagram {
  display: grid;
  gap: 18px;
}

.search-hub {
  position: relative;
  width: min(620px, 100%);
  margin-inline: auto;
  padding: 28px;
  text-align: center;
  border: 2px solid var(--green);
  background: linear-gradient(135deg, #fff, var(--green-soft));
}

.search-hub::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -46px;
  width: 2px;
  height: 46px;
  background: var(--green);
}

.search-hub p {
  color: var(--green);
  font-weight: 900;
}

.search-hub h3 {
  margin-top: 8px;
  font-size: clamp(29px, 4vw, 44px);
}

.search-hub span {
  display: block;
  margin-top: 12px;
  color: #334155;
  line-height: 1.7;
}

.search-paths {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.search-paths article {
  min-height: 260px;
  padding: 22px;
}

.search-paths span {
  display: inline-grid;
  min-width: 58px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.search-paths article:nth-child(2) span { background: var(--blue); }
.search-paths article:nth-child(3) span { background: var(--rose); }
.search-paths article:nth-child(4) span { background: var(--gold); }

.search-paths p,
.category-card p,
.deep-card p,
.workflow p,
.support-card p {
  margin-top: 10px;
}

.category-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  min-height: 340px;
  padding: 24px;
}

.category-card--food { border-top: 8px solid var(--rose); }
.category-card--tour { border-top: 8px solid var(--green); }
.category-card--airport { border-top: 8px solid var(--blue); }

.category-card header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.category-card header span {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.chip-list {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip-list span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  background: #f8fafc;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.deep-dive-section {
  background: rgba(255, 255, 255, 0.52);
}

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

.deep-card {
  min-height: 280px;
  padding: 24px;
}

.deep-card span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 12px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.workflow article {
  min-height: 270px;
  padding: 24px;
}

.workflow span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #fff;
  background: var(--green);
  font-size: 21px;
  font-weight: 900;
}

.workflow article:nth-child(2) span { background: var(--blue); }
.workflow article:nth-child(3) span { background: var(--rose); }
.workflow article:nth-child(4) span { background: var(--gold); }

.support-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.support-card {
  min-height: 240px;
  padding: 24px;
}

.support-card--main {
  border-top: 8px solid var(--green);
  background: linear-gradient(180deg, var(--green-soft), #fff 62%);
}

.support-card--main h3 {
  font-size: clamp(27px, 3.2vw, 40px);
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    justify-self: stretch;
    max-width: none;
  }

  .hero__board {
    width: min(760px, 100%);
    margin-inline: auto;
    border-left: 0;
  }

  .intent-grid,
  .category-layout,
  .deep-grid,
  .support-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-paths,
  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-card--main {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .hero,
  .intent-section,
  .search-section,
  .category-section,
  .deep-dive-section,
  .workflow-section,
  .support-section {
    padding: 54px 18px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(38px, 12vw, 60px);
  }

  .lead {
    font-size: 17px;
  }

  .hero__metrics,
  .intent-grid,
  .search-paths,
  .category-layout,
  .deep-grid,
  .workflow,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .hero__board {
    min-height: 470px;
  }

  .portal-card {
    left: 0;
    top: 22%;
    width: 88%;
  }

  .signal--one { right: 7%; top: 5%; }
  .signal--two { right: 0; top: 51%; }
  .signal--three { left: 4%; bottom: 5%; }
  .signal--four { left: 45%; bottom: 18%; }

  .search-hub::after {
    display: none;
  }

  .search-paths {
    margin-top: 18px;
  }

  .support-card--main {
    grid-column: auto;
  }
}
