:root {
  --navy-950: #071f36;
  --navy-900: #0b2e4f;
  --navy-800: #103d68;
  --navy-700: #195485;
  --blue-500: #2f84b7;
  --teal-500: #35bcae;
  --teal-400: #43d7c5;
  --teal-100: #dff8f3;
  --orange-500: #ef9f3f;
  --orange-400: #f6b35d;
  --orange-100: #fff1df;
  --cream-50: #fbfaf5;
  --cream-100: #f5f1e7;
  --ink: #14314a;
  --text: #405469;
  --muted: #748596;
  --line: #dce3e7;
  --white: #fff;
  --shadow-sm: 0 10px 35px rgba(9, 42, 70, .08);
  --shadow-md: 0 24px 70px rgba(7, 36, 60, .12);
  --shadow-lg: 0 35px 100px rgba(5, 28, 48, .22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1180px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream-50);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  font-feature-settings: "palt" 1;
  letter-spacing: .02em;
  line-height: 1.8;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
strong,
b {
  color: var(--ink);
}

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

.section-pad {
  padding: 120px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  border-radius: 0 0 10px 10px;
  color: var(--white);
  background: var(--navy-950);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-500);
}

.eyebrow.light {
  color: rgba(255, 255, 255, .72);
}

.eyebrow.light > span {
  background: var(--teal-400);
}

.eyebrow.center {
  justify-content: center;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 58px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 22px;
  color: var(--navy-950);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.34;
  letter-spacing: .015em;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 10px 25px rgba(16, 61, 104, .2);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-3px);
  background: var(--navy-700);
  box-shadow: 0 15px 35px rgba(16, 61, 104, .25);
}

.button:focus-visible,
.text-link:focus-visible,
.global-nav a:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible,
.print-button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange-400);
  outline-offset: 4px;
}

.button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease;
}

.button:hover svg {
  transform: translateX(4px);
}

.button-small {
  min-height: 44px;
  padding: 10px 19px;
  font-size: 12px;
}

.button-accent {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--orange-400), #f4c477);
  box-shadow: 0 16px 40px rgba(239, 159, 63, .28);
}

.button-accent:hover {
  background: linear-gradient(135deg, #ffc36e, #f7cf8d);
  box-shadow: 0 20px 50px rgba(239, 159, 63, .35);
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 800;
}

.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.light-link {
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: var(--white);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  color: var(--ink);
  border-color: rgba(17, 53, 83, .08);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 30px rgba(7, 31, 54, .08);
  backdrop-filter: blur(14px);
}

body.menu-open .site-header {
  backdrop-filter: none;
}

body.menu-open .brand {
  position: relative;
  z-index: 1002;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 40px), 1400px);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 44px;
  place-items: center;
  clip-path: polygon(50% 0, 96% 25%, 96% 75%, 50% 100%, 4% 75%, 4% 25%);
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--teal-400), var(--orange-400));
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark::after {
  position: absolute;
  inset: 4px;
  clip-path: inherit;
  border: 1px solid rgba(255, 255, 255, .45);
  content: "";
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  color: currentColor;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .1em;
}

.brand-copy small {
  margin-top: 4px;
  color: currentColor;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .25em;
  opacity: .62;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.global-nav a {
  position: relative;
  padding: 26px 0 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-400);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.global-nav a:hover::after,
.global-nav a.is-active::after {
  transform: scaleX(1);
}

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

.print-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  color: inherit;
  background: rgba(255, 255, 255, .08);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.is-scrolled .print-button {
  background: var(--cream-100);
}

.print-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 820px;
  padding: calc(var(--header-h) + 80px) 0 128px;
  align-items: center;
  color: rgba(255, 255, 255, .76);
  background:
    radial-gradient(circle at 77% 34%, rgba(45, 142, 162, .2), transparent 35%),
    linear-gradient(128deg, var(--navy-950), #0d365b 58%, #123f63);
  isolation: isolate;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 25%, transparent 94%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-a {
  width: 520px;
  height: 520px;
  right: -210px;
  top: 30px;
  border: 1px solid rgba(67, 215, 197, .13);
  box-shadow: inset 0 0 110px rgba(67, 215, 197, .06);
}

.hero-glow-b {
  width: 260px;
  height: 260px;
  left: -130px;
  bottom: 110px;
  background: rgba(239, 159, 63, .06);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(38px, 4.2vw, 61px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: .02em;
}

.hero h1 em {
  display: inline;
  color: var(--teal-400);
  font-style: normal;
  background: linear-gradient(90deg, var(--teal-400), #b3f1dd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 2.05;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
}

.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 7px rgba(67, 215, 197, .1);
}

.pulse-dot::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(67, 215, 197, .35);
  border-radius: 50%;
  content: "";
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { transform: scale(.7); opacity: 1; }
  70%, 100% { transform: scale(1.7); opacity: 0; }
}

.hero-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.5;
}

.hero-note strong {
  color: var(--white);
  font-size: 13px;
}

.hero-note small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .45);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 520px;
}

.dashboard-card {
  position: absolute;
  width: min(100%, 520px);
  top: 50%;
  right: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
}

.dashboard-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, .06), transparent 42%);
  pointer-events: none;
  content: "";
}

.dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.dashboard-head > div {
  display: flex;
  flex-direction: column;
}

.micro-label {
  margin-bottom: 4px;
  color: var(--teal-400);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
}

.dashboard-head strong {
  color: var(--white);
  font-size: 14px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(67, 215, 197, .24);
  border-radius: 999px;
  color: rgba(255, 255, 255, .64);
  background: rgba(67, 215, 197, .08);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
}

.live-badge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-400);
}

.dashboard-main-number {
  display: grid;
  grid-template-columns: .8fr 1fr;
  align-items: end;
  gap: 24px;
  padding: 34px 0 30px;
}

.dashboard-main-number > div:first-child {
  display: flex;
  flex-direction: column;
}

.dashboard-main-number > div:first-child > span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .47);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
}

.dashboard-main-number strong {
  color: var(--white);
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.04em;
}

.dashboard-main-number strong small {
  margin-left: 5px;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
}

.mini-trend {
  height: 65px;
}

.mini-trend svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mini-trend .area {
  fill: url(#areaGradient);
}

.mini-trend .line {
  fill: none;
  stroke: var(--teal-400);
  stroke-linecap: round;
  stroke-width: 2.5;
}

.mini-trend circle {
  fill: var(--teal-400);
  stroke: rgba(255, 255, 255, .8);
  stroke-width: 2;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dash-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 15px;
  background: rgba(7, 31, 54, .22);
}

.metric-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  place-items: center;
}

.metric-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pin-icon {
  color: var(--orange-400);
  background: rgba(239, 159, 63, .1);
}

.search-icon {
  color: var(--teal-400);
  background: rgba(67, 215, 197, .1);
}

.dash-metric p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.dash-metric small {
  color: rgba(255, 255, 255, .45);
  font-size: 8px;
}

.dash-metric strong {
  margin-top: 3px;
  color: var(--white);
  font-size: 20px;
}

.dash-metric strong b {
  margin-left: 4px;
  color: var(--orange-400);
  font-size: 11px;
}

.search-icon + p strong b {
  color: var(--teal-400);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 45px rgba(5, 27, 47, .26);
  animation: float 5s ease-in-out infinite;
}

.floating-card svg {
  width: 27px;
  fill: none;
  stroke: var(--teal-500);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-card p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.28;
}

.floating-card strong {
  font-size: 20px;
}

.floating-card span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}

.floating-mobile {
  top: 38px;
  right: 36px;
}

.floating-kobe {
  bottom: 36px;
  left: -10px;
  animation-delay: -2.5s;
}

.kobe-pin {
  position: relative;
  display: inline-block;
  width: 27px;
  height: 34px;
  border: 2px solid var(--orange-500);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) scale(.72);
}

.kobe-pin::after {
  position: absolute;
  width: 7px;
  height: 7px;
  top: 8px;
  left: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  content: "";
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.kobe-silhouette {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 170px;
  opacity: .16;
}

.kobe-silhouette svg {
  width: 100%;
  height: 100%;
}

.kobe-silhouette .mountains {
  fill: #55a8a5;
  opacity: .36;
}

.kobe-silhouette .city {
  fill: #b9d7da;
}

/* Proof strip */
.proof-strip {
  position: relative;
  z-index: 5;
  color: var(--white);
  background: var(--navy-900);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: flex;
  min-height: 150px;
  padding: 28px 28px;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, .09);
}

.proof-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, .09);
}

.proof-number {
  display: inline-flex;
  align-items: baseline;
  min-width: max-content;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.proof-number b {
  margin-right: 3px;
  color: var(--teal-400);
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1;
  letter-spacing: -.035em;
}

.proof-item:nth-child(2) .proof-number {
  color: var(--white);
  font-size: 25px;
  font-weight: 900;
}

.proof-item:nth-child(2) .proof-number b {
  margin-left: 7px;
  color: var(--orange-400);
  font-size: 13px;
}

.proof-item p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.65;
}

/* What is Kobetoku */
.about {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.about-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-orb-a {
  width: 430px;
  height: 430px;
  top: -250px;
  right: -150px;
  border: 65px solid rgba(53, 188, 174, .055);
}

.about-orb-b {
  width: 300px;
  height: 300px;
  left: -190px;
  bottom: -130px;
  background: rgba(67, 161, 207, .04);
}

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

.about-layout {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: 72px;
}

.about-copy h2 {
  margin-bottom: 26px;
  color: var(--navy-950);
  font-size: clamp(35px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.48;
}

.about-title-line {
  white-space: nowrap;
}

.about-copy h2 small {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-700);
  font-size: .47em;
  font-weight: 800;
}

.about-copy h2 em {
  position: relative;
  display: inline-block;
  color: #168f8b;
  font-style: normal;
  z-index: 1;
}

.about-copy h2 em::after {
  position: absolute;
  z-index: -1;
  height: 10px;
  right: -4px;
  bottom: 9px;
  left: -4px;
  border-radius: 10px;
  background: rgba(67, 215, 197, .19);
  content: "";
}

.about-lead {
  margin-bottom: 28px;
  color: #4f6d7d;
  font-size: 14px;
  line-height: 2;
}

.about-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 27px;
}

.about-topics > span {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  min-height: 70px;
  padding: 11px 13px;
  border: 1px solid rgba(25, 84, 133, .075);
  border-radius: 14px;
  align-items: center;
  column-gap: 10px;
  background: #f7faf9;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.about-topics > span:hover {
  border-color: rgba(53, 188, 174, .25);
  background: #f1faf8;
  transform: translateY(-2px);
}

.about-topic-icon {
  display: grid;
  width: 42px;
  height: 42px;
  grid-row: 1 / 3;
  border-radius: 13px;
  place-items: center;
  color: #168f8b;
  background: var(--teal-100);
}

.about-topic-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-topic-icon.gourmet {
  color: #d4842d;
  background: var(--orange-100);
}

.about-topic-icon.item {
  color: #6f70b5;
  background: #efeffc;
}

.about-topic-icon.town {
  color: #3f8fb6;
  background: #e8f4f9;
}

.about-topics b {
  align-self: end;
  font-size: 11px;
  line-height: 1.35;
}

.about-topics small {
  align-self: start;
  color: #80919b;
  font-size: 7px;
  line-height: 1.45;
}

.about-site-link {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(16, 61, 104, .18);
}

.about-visual {
  position: relative;
  min-height: 555px;
}

.about-visual::before {
  position: absolute;
  width: 470px;
  height: 470px;
  top: 44px;
  left: 50%;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(67, 215, 197, .12), rgba(67, 161, 207, .09));
  content: "";
  transform: translateX(-50%);
}

.about-window {
  position: absolute;
  z-index: 2;
  width: min(100%, 500px);
  top: 38px;
  right: 18px;
  border: 1px solid rgba(25, 84, 133, .13);
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 30px 75px rgba(30, 97, 119, .17);
  overflow: hidden;
  transform: rotate(1.5deg);
}

.about-window-bar {
  display: flex;
  height: 34px;
  padding: 0 13px;
  align-items: center;
  background: #edf4f5;
}

.window-dots {
  display: flex;
  gap: 4px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b6c5ca;
}

.window-address {
  width: 45%;
  margin-inline: auto;
  padding: 2px 8px;
  border-radius: 99px;
  color: #7f929c;
  background: rgba(255, 255, 255, .8);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
}

.about-window-head {
  display: flex;
  height: 54px;
  padding: 0 19px;
  border-bottom: 1px solid #edf1f2;
  align-items: center;
  justify-content: space-between;
}

.about-mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
}

.about-mini-brand > span {
  display: grid;
  width: 25px;
  height: 29px;
  clip-path: polygon(50% 0, 96% 25%, 96% 75%, 50% 100%, 4% 75%, 4% 25%);
  place-items: center;
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--teal-400), var(--orange-400));
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.about-mini-brand strong {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1.1;
}

.about-mini-brand small {
  margin-top: 2px;
  color: #95a4ab;
  font-size: 4px;
  letter-spacing: .17em;
}

.about-mini-search {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  place-items: center;
  color: var(--teal-500);
  background: var(--teal-100);
}

.about-mini-search svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.about-window-body {
  padding: 17px;
  background: #f7faf9;
}

.about-feature-story {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 185px;
  border-radius: 17px;
  background: linear-gradient(135deg, #dff6f2, #e9f6fb);
  overflow: hidden;
}

.story-art {
  position: relative;
  min-height: 185px;
  overflow: hidden;
}

.story-sun {
  position: absolute;
  width: 54px;
  height: 54px;
  top: 24px;
  right: 32px;
  border-radius: 50%;
  background: #ffd589;
  box-shadow: 0 0 0 12px rgba(255, 213, 137, .2);
}

.story-mountain {
  position: absolute;
  width: 180px;
  height: 100px;
  bottom: 32px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.mountain-a {
  left: -22px;
  background: #94d3ca;
}

.mountain-b {
  right: -37px;
  bottom: 38px;
  background: #79bcca;
}

.story-city {
  position: absolute;
  height: 40px;
  right: 0;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(90deg, #3a7592 0 16px, transparent 16px 24px);
  clip-path: polygon(0 50%, 7% 50%, 7% 20%, 14% 20%, 14% 55%, 23% 55%, 23% 8%, 31% 8%, 31% 56%, 43% 56%, 43% 33%, 52% 33%, 52% 56%, 64% 56%, 64% 15%, 72% 15%, 72% 56%, 83% 56%, 83% 30%, 92% 30%, 92% 56%, 100% 56%, 100% 100%, 0 100%);
  opacity: .7;
}

.story-tower {
  position: absolute;
  width: 15px;
  height: 85px;
  left: 49%;
  bottom: 19px;
  border: 3px solid #2e6d88;
  border-radius: 8px 8px 2px 2px;
  transform: translateX(-50%);
}

.story-tower::before {
  position: absolute;
  width: 2px;
  height: 23px;
  top: -25px;
  left: 4px;
  background: #2e6d88;
  content: "";
}

.story-copy {
  display: flex;
  padding: 22px 18px 20px 5px;
  flex-direction: column;
  justify-content: center;
}

.story-copy small {
  margin-bottom: 6px;
  color: var(--teal-500);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .15em;
}

.story-copy strong {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.45;
}

.story-copy span {
  color: #718792;
  font-size: 7px;
  line-height: 1.7;
}

.about-category-tabs {
  display: flex;
  gap: 6px;
  margin: 13px 0;
}

.about-category-tabs span {
  padding: 4px 10px;
  border: 1px solid #e2e9ea;
  border-radius: 999px;
  color: #758a94;
  background: var(--white);
  font-size: 6px;
  font-weight: 700;
}

.about-category-tabs span:first-child {
  color: #148d88;
  border-color: rgba(53, 188, 174, .25);
  background: var(--teal-100);
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.about-story-grid > span {
  display: flex;
  min-height: 102px;
  padding: 7px;
  border-radius: 10px;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 6px 15px rgba(25, 84, 133, .05);
}

.mini-art {
  display: block;
  height: 46px;
  margin-bottom: 7px;
  border-radius: 7px;
}

.art-food { background: linear-gradient(135deg, #f5c98f, #f0a86a); }
.art-event { background: linear-gradient(135deg, #8fdacf, #59b8bd); }
.art-item { background: linear-gradient(135deg, #a8cbe1, #788fc4); }

.about-story-grid b {
  font-size: 7px;
  line-height: 1.4;
}

.about-story-grid small {
  margin-top: auto;
  color: #9aa8ae;
  font-size: 4px;
  font-weight: 800;
  letter-spacing: .1em;
}

.about-float-tag {
  position: absolute;
  z-index: 3;
  display: flex;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(25, 84, 133, .09);
  border-radius: 14px;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 35px rgba(24, 80, 101, .15);
}

.about-float-tag svg {
  width: 17px;
  fill: none;
  stroke: var(--teal-500);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.about-float-tag b {
  font-size: 9px;
}

.tag-search {
  top: 10px;
  right: -6px;
}

.tag-found {
  bottom: 37px;
  left: -20px;
}

.tag-found i {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-500);
}

.tag-found i::after {
  position: absolute;
  width: 7px;
  height: 4px;
  top: 5px;
  left: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  content: "";
  transform: rotate(-45deg);
}

.about-connection {
  display: grid;
  grid-template-columns: 1fr 70px .8fr 70px 1fr;
  align-items: center;
  gap: 15px;
  margin-top: 55px;
  padding: 24px 30px;
  border: 1px solid rgba(25, 84, 133, .08);
  border-radius: 22px;
  background: linear-gradient(90deg, #f4fafb, #f1faf7);
}

.connection-side,
.connection-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.connection-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 15px;
  place-items: center;
  color: #3d8db0;
  background: #e4f2f8;
}

.connection-icon.people-icon {
  color: #168f8b;
  background: var(--teal-100);
}

.connection-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connection-side p,
.connection-center p {
  display: flex;
  margin: 0;
  flex-direction: column;
  line-height: 1.4;
}

.connection-side small,
.connection-center small {
  color: #8799a2;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .12em;
}

.connection-side strong,
.connection-center strong {
  margin-top: 4px;
  font-size: 10px;
}

.connection-center .brand-mark {
  width: 38px;
  height: 42px;
  font-size: 18px;
}

.connection-center strong {
  font-size: 14px;
}

.connection-line {
  position: relative;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #8bc8d3, var(--teal-500));
}

.connection-line::after {
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  right: -1px;
  border-top: 2px solid var(--teal-500);
  border-right: 2px solid var(--teal-500);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

/* Concept */
.concept {
  position: relative;
  background:
    radial-gradient(circle at 5% 5%, rgba(67, 215, 197, .07), transparent 25%),
    var(--cream-50);
}

.concept-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 68px 72px;
  border: 1px solid rgba(16, 61, 104, .08);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.concept-card::before {
  position: absolute;
  width: 400px;
  height: 400px;
  right: -170px;
  bottom: -230px;
  border: 65px solid rgba(67, 215, 197, .06);
  border-radius: 50%;
  content: "";
}

.concept-copy {
  position: relative;
  z-index: 2;
}

.concept-copy h2 {
  margin-bottom: 26px;
  color: var(--navy-950);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.35;
}

.concept-copy h2 span {
  position: relative;
  color: var(--muted);
}

.concept-copy h2 span::after {
  position: absolute;
  height: 3px;
  right: 0;
  bottom: 2px;
  left: 0;
  background: var(--line);
  content: "";
}

.concept-copy h2 em {
  color: var(--teal-500);
  font-style: normal;
}

.concept-copy > p:last-child {
  max-width: 550px;
  margin: 0;
  line-height: 2;
}

.target-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 58px 1.25fr;
  align-items: center;
  min-height: 300px;
}

.target-visual > p {
  position: absolute;
  right: 0;
  bottom: -5px;
  margin: 0;
  color: var(--navy-700);
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.target-visual > p strong {
  color: var(--navy-950);
  font-size: 15px;
}

.scatter-group {
  position: relative;
  height: 190px;
}

.scatter-group i {
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #aebbc4;
  opacity: .58;
}

.scatter-group i:nth-child(1) { left: 7%; top: 15%; }
.scatter-group i:nth-child(2) { left: 37%; top: 3%; }
.scatter-group i:nth-child(3) { left: 67%; top: 20%; }
.scatter-group i:nth-child(4) { left: 90%; top: 9%; }
.scatter-group i:nth-child(5) { left: 18%; top: 48%; }
.scatter-group i:nth-child(6) { left: 50%; top: 37%; }
.scatter-group i:nth-child(7) { left: 82%; top: 51%; }
.scatter-group i:nth-child(8) { left: 3%; top: 79%; }
.scatter-group i:nth-child(9) { left: 34%; top: 87%; }
.scatter-group i:nth-child(10) { left: 65%; top: 75%; }
.scatter-group i:nth-child(11) { left: 95%; top: 84%; }
.scatter-group i:nth-child(12) { left: 48%; top: 68%; }

.scatter-group span {
  position: absolute;
  inset: 50% auto auto 50%;
  min-width: max-content;
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 5px 16px rgba(20, 49, 74, .08);
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
  transform: translate(-50%, -50%);
}

.scatter-group span strong {
  color: var(--muted);
  font-size: 11px;
}

.direction-arrow {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, #c9d2d8, var(--teal-500));
}

.direction-arrow::after {
  position: absolute;
  width: 9px;
  height: 9px;
  right: -1px;
  top: 50%;
  border-top: 2px solid var(--teal-500);
  border-right: 2px solid var(--teal-500);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.focus-target {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

.target-ring {
  position: absolute;
  border: 1px solid rgba(53, 188, 174, .28);
  border-radius: 50%;
}

.ring-1 {
  inset: 4px;
  background: rgba(53, 188, 174, .04);
}

.ring-2 {
  inset: 37px;
  background: rgba(53, 188, 174, .07);
}

.target-core {
  position: absolute;
  inset: 70px;
  display: grid;
  border: 6px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  place-content: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--teal-500), var(--navy-700));
  box-shadow: 0 10px 30px rgba(53, 188, 174, .28);
  text-align: center;
}

.target-core span {
  font-size: 16px;
  font-weight: 900;
}

.target-core strong {
  color: rgba(255, 255, 255, .65);
  font-size: 7px;
  letter-spacing: .18em;
}

.person {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange-400);
  box-shadow: 0 0 0 5px rgba(239, 159, 63, .12);
}

.person::after {
  position: absolute;
  width: 17px;
  height: 9px;
  left: 50%;
  top: 14px;
  border-radius: 10px 10px 4px 4px;
  background: var(--orange-400);
  content: "";
  transform: translateX(-50%);
}

.person-1 { top: 19px; left: 103px; }
.person-2 { top: 97px; right: 15px; }
.person-3 { bottom: 29px; left: 47px; }
.person-4 { top: 62px; left: 17px; }

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.strength-card {
  position: relative;
  min-height: 330px;
  padding: 34px 28px;
  border: 1px solid rgba(16, 61, 104, .08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(9, 42, 70, .04);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.strength-card:hover {
  border-color: rgba(53, 188, 174, .28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-7px);
}

.strength-index {
  position: absolute;
  top: 25px;
  right: 24px;
  color: #d9e1e5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.strength-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 30px;
  border-radius: 18px;
  place-items: center;
  color: var(--teal-500);
  background: var(--teal-100);
}

.strength-card:nth-child(even) .strength-icon {
  color: var(--orange-500);
  background: var(--orange-100);
}

.strength-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strength-card h3 {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.55;
}

.strength-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}

/* Data */
.data-section {
  background: #f1f5f3;
}

.data-overview-grid {
  display: grid;
  grid-template-columns: 1.24fr .76fr;
  gap: 24px;
  margin-bottom: 24px;
}

.data-card,
.search-journey,
.search-console-card,
.query-card,
.recommend-box,
.process-block {
  border: 1px solid rgba(16, 61, 104, .07);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.data-card {
  padding: 34px;
}

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.card-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-500);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .19em;
}

.card-head h3,
.compact-head h3,
.console-title h3,
.process-title h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.5;
}

.highlight-pill {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--navy-800);
  background: var(--orange-100);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.city-chart {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.bar-row {
  display: grid;
  grid-template-columns: 78px 1fr 47px;
  align-items: center;
  gap: 14px;
}

.bar-label {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.bar-label b {
  font-size: 12px;
}

.bar-label small {
  color: #a0aeb9;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: .1em;
}

.bar-track {
  height: 12px;
  border-radius: 999px;
  background: #edf0f1;
  overflow: hidden;
}

.bar-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #a8b6c1;
  transition: width 1.2s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible .bar-track i,
.is-visible .bar-track i {
  width: var(--size);
}

.bar-row.featured .bar-track {
  height: 15px;
  background: var(--teal-100);
}

.bar-row.featured .bar-track i {
  background: linear-gradient(90deg, var(--teal-500), var(--teal-400));
}

.bar-row.nearby .bar-track i {
  background: var(--orange-400);
}

.bar-row strong {
  font-size: 11px;
  text-align: right;
}

.bar-row.featured strong {
  color: var(--teal-500);
  font-size: 13px;
}

.chart-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  color: var(--muted);
  font-size: 10px;
}

.chart-caption span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-400);
}

.chart-caption strong {
  margin-left: -5px;
  color: var(--orange-500);
}

.donut-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 28px;
  margin: 15px 0 28px;
}

.donut {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(var(--teal-500) 0 90.4%, #e4e9eb 90.4% 100%);
  transform: rotate(-90deg);
}

.donut::before {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.donut-center {
  position: absolute;
  inset: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  line-height: 1.1;
  text-align: center;
}

.donut-center strong {
  color: var(--navy-950);
  font-size: 30px;
  letter-spacing: -.05em;
}

.donut-center strong small {
  margin-left: 2px;
  color: var(--teal-500);
  font-size: 12px;
}

.donut-center span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

.donut-copy {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.legend-row {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
}

.legend-row strong {
  font-size: 11px;
}

.legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.search-dot { background: var(--teal-500); }
.other-dot { background: #dce3e7; }

.session-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.session-total span {
  color: var(--muted);
  font-size: 9px;
}

.session-total strong {
  font-size: 17px;
}

.insight-callout {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px;
  border-radius: var(--radius-sm);
  background: #f2f8f6;
}

.insight-callout svg {
  width: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--teal-500);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insight-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.75;
}

.insight-callout strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
}

.search-journey {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  align-items: center;
  gap: 55px;
  margin-bottom: 24px;
  padding: 42px;
}

.journey-intro h3 {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 1.55;
}

.journey-intro > p:last-child {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
}

.journey-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-flow::before {
  position: absolute;
  height: 2px;
  top: 29px;
  right: 10%;
  left: 10%;
  background: linear-gradient(90deg, var(--teal-500), var(--orange-400));
  content: "";
}

.journey-flow li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.journey-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 13px;
  border: 5px solid var(--white);
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--teal-500);
  box-shadow: 0 0 0 1px rgba(53, 188, 174, .18), 0 10px 20px rgba(53, 188, 174, .2);
}

.journey-flow li:nth-child(2) .journey-icon { background: #319ea1; }
.journey-flow li:nth-child(3) .journey-icon { background: #5d8b8f; }
.journey-flow li:nth-child(4) .journey-icon { background: var(--orange-500); box-shadow: 0 0 0 1px rgba(239, 159, 63, .18), 0 10px 20px rgba(239, 159, 63, .2); }

.journey-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-step {
  display: block;
  margin-bottom: 2px;
  color: var(--teal-500);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .13em;
}

.journey-flow li:nth-child(4) .journey-step { color: var(--orange-500); }

.journey-flow strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.journey-flow small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.6;
}

.search-console-grid {
  display: grid;
  grid-template-columns: 1.23fr .77fr;
  gap: 24px;
  margin-bottom: 24px;
}

.search-console-card,
.query-card {
  padding: 34px;
}

.console-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 27px;
}

.google-g {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  place-items: center;
  color: #4285f4;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(20, 49, 74, .07);
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
}

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

.console-metrics > div {
  padding: 16px 18px;
  border-radius: 14px;
  background: #f4f7f6;
}

.console-metrics span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}

.console-metrics strong {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.console-metrics b {
  font-size: clamp(21px, 2.3vw, 30px);
  letter-spacing: -.04em;
}

.console-metrics small {
  color: var(--teal-500);
  font-size: 9px;
}

.console-graph {
  position: relative;
  height: 120px;
  margin: 10px -3px -3px;
  overflow: hidden;
}

.graph-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.graph-lines i {
  height: 1px;
  background: #edf0f0;
}

.console-graph svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.console-area { fill: url(#consoleArea); }
.console-line { fill: none; stroke: var(--teal-500); stroke-width: 2.5; stroke-linecap: round; }

.query-card .card-head {
  margin-bottom: 19px;
}

.query-list {
  display: flex;
  flex-direction: column;
}

.query-list > div {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  border-top: 1px solid #edf0f0;
}

.query-list > div:last-child {
  border-bottom: 1px solid #edf0f0;
}

.query-rank {
  color: #b4c0c7;
  font-size: 8px;
  font-weight: 900;
}

.query-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.query-text svg {
  width: 15px;
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.query-stat {
  color: var(--muted);
  font-size: 7px;
  text-align: right;
}

.query-stat strong {
  display: block;
  color: var(--teal-500);
  font-size: 10px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
}

.content-bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-bar-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
}

.topic-icon {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  place-items: center;
  color: var(--teal-500);
  background: var(--teal-100);
  font-size: 12px;
  font-weight: 900;
}

.topic-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.food-topic,
.tv-topic {
  color: var(--orange-500);
  background: var(--orange-100);
}

.port-topic {
  color: var(--blue-500);
  background: #e7f2f8;
}

.item-topic {
  color: #8a70b2;
  background: #f1ebf8;
}

.content-bar-row > div > span {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 7px;
}

.content-bar-row b {
  font-size: 11px;
}

.content-bar-row strong {
  color: var(--muted);
  font-size: 9px;
  white-space: nowrap;
}

.content-bar-row > div > i {
  display: block;
  height: 7px;
  border-radius: 99px;
  background: #edf0f0;
  overflow: hidden;
}

.content-bar-row em {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy-700), var(--teal-500));
  transition: width 1.2s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible .content-bar-row em {
  width: var(--size);
}

.audience-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compact-card {
  padding: 27px;
}

.compact-head h3 {
  font-size: 17px;
}

.new-user-visual {
  margin: 25px 0 20px;
}

.new-user-ring {
  position: relative;
  width: 136px;
  height: 136px;
  margin: 0 auto 17px;
  border-radius: 50%;
  background: conic-gradient(var(--orange-400) 0 98.7%, #e8ecee 98.7% 100%);
}

.new-user-ring::before {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.new-user-ring > span,
.device-donut > span {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

.new-user-ring strong,
.device-donut strong {
  font-size: 26px;
  letter-spacing: -.05em;
}

.new-user-ring strong small,
.device-donut strong small {
  margin-left: 2px;
  color: var(--orange-500);
  font-size: 10px;
}

.new-user-ring em,
.device-donut em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.new-user-numbers {
  display: flex;
  gap: 8px;
}

.new-user-numbers p {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: 0;
  padding: 10px;
  border-radius: 10px;
  background: #f5f7f6;
  line-height: 1.35;
}

.new-user-numbers span {
  color: var(--muted);
  font-size: 7px;
}

.new-user-numbers strong {
  margin-top: 3px;
  font-size: 13px;
}

.compact-note {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  line-height: 1.7;
}

.device-visual {
  position: relative;
  height: 154px;
  margin: 21px 0 12px;
}

.phone-figure {
  position: absolute;
  width: 72px;
  height: 130px;
  left: 4px;
  bottom: 0;
  border: 3px solid var(--navy-800);
  border-radius: 15px;
  background: linear-gradient(155deg, #effaf7, #dcefe9);
  transform: rotate(-6deg);
}

.phone-figure::before {
  position: absolute;
  width: 24px;
  height: 3px;
  top: 5px;
  left: 50%;
  border-radius: 99px;
  background: var(--navy-800);
  content: "";
  transform: translateX(-50%);
}

.phone-figure span,
.phone-figure i {
  position: absolute;
  right: 9px;
  left: 9px;
  border-radius: 4px;
  background: var(--white);
}

.phone-figure span { height: 37px; top: 17px; }
.phone-figure i { height: 50px; top: 60px; }

.device-donut {
  position: absolute;
  width: 120px;
  height: 120px;
  right: 0;
  top: 7px;
  border-radius: 50%;
  background: conic-gradient(var(--teal-500) 0 85.8%, var(--navy-700) 85.8% 98.8%, var(--orange-400) 98.8% 100%);
}

.device-donut::before {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.device-donut > span {
  z-index: 1;
}

.device-donut strong small {
  color: var(--teal-500);
}

.device-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 11px;
  color: var(--muted);
  font-size: 7px;
}

.device-legend span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.device-legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.mobile-color { background: var(--teal-500); }
.pc-color { background: var(--navy-700); }
.tablet-color { background: var(--orange-400); }

.data-source {
  margin: 26px 0 0;
  color: #718188;
  font-size: 9px;
  text-align: center;
}

/* Visibility */
.visibility {
  position: relative;
  color: rgba(255, 255, 255, .64);
  background:
    radial-gradient(circle at 78% 12%, rgba(53, 188, 174, .12), transparent 25%),
    linear-gradient(135deg, var(--navy-950), #0c3458);
  overflow: hidden;
}

.visibility::after {
  position: absolute;
  width: 600px;
  height: 600px;
  left: -350px;
  bottom: -300px;
  border: 90px solid rgba(255, 255, 255, .025);
  border-radius: 50%;
  content: "";
}

.visibility .container {
  position: relative;
  z-index: 2;
}

.visibility-heading {
  max-width: 850px;
}

.visibility-heading h2 {
  color: var(--white);
}

.visibility-heading h2 em {
  color: var(--orange-400);
  font-style: normal;
}

.visibility-heading p:last-child {
  color: rgba(255, 255, 255, .62);
}

.media-comparison {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  gap: 18px;
}

.comparison-panel {
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .045);
}

.kobetoku-panel {
  border-color: rgba(67, 215, 197, .3);
  background: linear-gradient(145deg, rgba(67, 215, 197, .1), rgba(255, 255, 255, .045));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

.comparison-title {
  margin-bottom: 22px;
}

.comparison-title span {
  color: rgba(255, 255, 255, .35);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .2em;
}

.kobetoku-panel .comparison-title span {
  color: var(--teal-400);
}

.comparison-title h3 {
  margin: 3px 0 0;
  color: var(--white);
  font-size: 19px;
}

.browser-mock {
  overflow: hidden;
  border-radius: 16px;
  background: #edf1f2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .24);
}

.browser-top {
  display: flex;
  height: 27px;
  padding: 0 10px;
  align-items: center;
  gap: 4px;
  background: #dfe5e7;
}

.browser-top i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #afbdc4;
}

.browser-top span {
  width: 44%;
  height: 8px;
  margin-left: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .85);
}

.mock-page {
  position: relative;
  height: 270px;
  padding: 28px 24px;
  background: #fafafa;
}

.mock-article {
  width: 64%;
  margin-inline: auto;
  padding: 17px;
  border-radius: 7px;
  background: var(--white);
}

.mock-article i {
  display: block;
  width: 100%;
  height: 7px;
  margin-bottom: 10px;
  border-radius: 3px;
  background: #e2e8ea;
}

.mock-article .line-long {
  height: 35px;
  margin-bottom: 14px;
  background: #d7e1e4;
}

.mock-article .line-mid { width: 72%; }

.mock-ad {
  position: absolute;
  display: grid;
  border: 1px solid #e9b3b3;
  color: #b16868;
  background: repeating-linear-gradient(-45deg, #fff2f2, #fff2f2 6px, #fde7e7 6px, #fde7e7 12px);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  place-items: center;
}

.ad-a { width: 25%; height: 56px; left: 8px; top: 14px; }
.ad-b { width: 28%; height: 77px; right: 8px; top: 12px; }
.ad-c { width: 30%; height: 62px; left: 5px; bottom: 17px; }
.ad-d { width: 25%; height: 54px; right: 6px; bottom: 16px; }
.ad-e { width: 58%; height: 38px; left: 21%; bottom: 5px; }

.clean-browser .mock-page {
  background: #f6faf8;
}

.premium-mock-ad {
  position: absolute;
  display: flex;
  width: 84%;
  min-height: 62px;
  right: 8%;
  bottom: 24px;
  padding: 11px 17px;
  border: 2px solid var(--teal-500);
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--navy-950);
  background: var(--teal-100);
  box-shadow: 0 12px 26px rgba(53, 188, 174, .22);
}

.premium-mock-ad small {
  position: absolute;
  top: -10px;
  left: 12px;
  padding: 2px 6px;
  border-radius: 99px;
  color: var(--white);
  background: var(--teal-500);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .1em;
}

.premium-mock-ad strong {
  font-size: 11px;
}

.premium-mock-ad em {
  color: var(--teal-500);
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .09em;
}

.comparison-panel ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-panel li {
  position: relative;
  padding-top: 16px;
  color: rgba(255, 255, 255, .48);
  font-size: 8px;
  line-height: 1.6;
  text-align: center;
}

.comparison-panel li::before {
  position: absolute;
  width: 7px;
  height: 7px;
  top: 0;
  left: 50%;
  border: 1px solid #9aaab3;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.kobetoku-panel li {
  color: rgba(255, 255, 255, .7);
}

.kobetoku-panel li::before {
  border-color: var(--teal-400);
  background: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(67, 215, 197, .1);
}

.comparison-arrow svg {
  width: 72px;
  fill: rgba(255, 255, 255, .05);
  stroke: var(--orange-400);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visibility-equation {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1.25fr;
  align-items: stretch;
  gap: 16px;
  margin-top: 32px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .04);
}

.visibility-equation > span {
  display: flex;
  min-height: 110px;
  padding: 17px;
  border-radius: 14px;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, .05);
}

.visibility-equation span i {
  color: var(--teal-400);
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .15em;
}

.visibility-equation span strong {
  margin: 5px 0 3px;
  color: var(--white);
  font-size: 16px;
}

.visibility-equation span small {
  color: rgba(255, 255, 255, .42);
  font-size: 8px;
}

.visibility-equation .operator {
  display: grid;
  color: rgba(255, 255, 255, .26);
  font-size: 20px;
  place-items: center;
}

.visibility-equation .equals {
  color: var(--orange-400);
}

.visibility-equation > .equation-result {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  border: 1px solid rgba(239, 159, 63, .27);
  background: rgba(239, 159, 63, .1);
}

.equation-result svg {
  width: 30px;
  fill: none;
  stroke: var(--orange-400);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visibility-equation .equation-result strong {
  color: var(--orange-400);
  font-size: 14px;
}

.visibility-statement {
  position: relative;
  display: flex;
  max-width: 900px;
  margin: 80px auto 0;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
  text-align: center;
}

.quote-mark {
  color: rgba(67, 215, 197, .25);
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: .78;
}

.visibility-statement p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.8;
}

.visibility-statement strong {
  color: var(--white);
  font-size: 1.25em;
}

/* Advertising menu */
.ad-menu {
  background: var(--cream-50);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-card {
  position: relative;
  display: flex;
  min-height: 620px;
  padding: 32px;
  border: 1px solid rgba(16, 61, 104, .08);
  border-radius: var(--radius-lg);
  flex-direction: column;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.menu-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.menu-card::after {
  position: absolute;
  width: 170px;
  height: 170px;
  top: -100px;
  right: -80px;
  border: 35px solid rgba(53, 188, 174, .06);
  border-radius: 50%;
  content: "";
}

.menu-pr::after { border-color: rgba(239, 159, 63, .08); }
.menu-event::after { border-color: rgba(47, 132, 183, .07); }

.menu-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-number {
  color: #d9e0e4;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
}

.menu-tag {
  padding: 5px 9px;
  border-radius: 99px;
  color: var(--teal-500);
  background: var(--teal-100);
  font-size: 8px;
  font-weight: 800;
}

.menu-pr .menu-tag {
  color: var(--orange-500);
  background: var(--orange-100);
}

.menu-event .menu-tag {
  color: var(--blue-500);
  background: #e6f2f8;
}

.menu-illustration {
  position: relative;
  display: grid;
  height: 190px;
  margin: 22px 0 27px;
  border-radius: 20px;
  place-items: center;
  background: #eef8f5;
  overflow: hidden;
}

.menu-pr .menu-illustration { background: #fff5e8; }
.menu-event .menu-illustration { background: #edf5f8; }

.mini-site {
  position: relative;
  width: 180px;
  height: 132px;
  padding: 16px;
  border: 2px solid var(--navy-800);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 16px 32px rgba(16, 61, 104, .15);
  transform: rotate(-2deg);
}

.mini-site span,
.mini-site i {
  display: block;
  border-radius: 3px;
  background: #dfe9e8;
}

.mini-site span { width: 55%; height: 8px; margin-bottom: 10px; background: var(--navy-800); }
.mini-site i { width: 100%; height: 5px; margin-bottom: 7px; }

.mini-site em {
  display: grid;
  height: 36px;
  margin: 10px -5px;
  border: 2px solid var(--teal-500);
  border-radius: 6px;
  color: var(--teal-500);
  background: var(--teal-100);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .12em;
  place-items: center;
}

.attention-rays i {
  position: absolute;
  display: block;
  width: 2px;
  height: 24px;
  top: 20px;
  left: 50%;
  border-radius: 2px;
  background: var(--orange-400);
  transform-origin: center 75px;
}

.attention-rays i:nth-child(1) { transform: translateX(-50%) rotate(-34deg); }
.attention-rays i:nth-child(2) { transform: translateX(-50%); }
.attention-rays i:nth-child(3) { transform: translateX(-50%) rotate(34deg); }

.article-sheet {
  position: relative;
  width: 150px;
  height: 155px;
  padding: 15px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 32px rgba(100, 66, 25, .15);
  transform: rotate(-5deg);
}

.article-sheet .photo {
  display: block;
  width: 100%;
  height: 54px;
  margin-bottom: 12px;
  border-radius: 5px;
  background: linear-gradient(135deg, #f3c781, #e99549);
}

.article-sheet span {
  display: block;
  width: 100%;
  height: 5px;
  margin-bottom: 6px;
  border-radius: 3px;
  background: #eadfce;
}

.article-sheet span:nth-of-type(2) { width: 80%; }

.article-sheet em {
  position: absolute;
  left: 15px;
  top: 57px;
  padding: 3px 6px;
  border-radius: 4px;
  color: var(--white);
  background: var(--orange-500);
  font-size: 6px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .1em;
}

.article-illustration > svg {
  position: absolute;
  width: 68px;
  right: 48px;
  bottom: 17px;
  fill: #fff3de;
  stroke: var(--orange-500);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-sheet {
  position: relative;
  display: flex;
  width: 123px;
  height: 132px;
  padding-top: 22px;
  border-radius: 10px;
  align-items: center;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 16px 32px rgba(16, 61, 104, .15);
  transform: translateX(-24px) rotate(-3deg);
}

.calendar-sheet::before {
  position: absolute;
  height: 25px;
  inset: 0 0 auto;
  border-radius: 10px 10px 0 0;
  background: var(--blue-500);
  content: "";
}

.calendar-sheet span::before,
.calendar-sheet span::after {
  position: absolute;
  width: 7px;
  height: 13px;
  top: -5px;
  border-radius: 3px;
  background: var(--navy-800);
  content: "";
}

.calendar-sheet span::before { left: 28px; }
.calendar-sheet span::after { right: 28px; }

.calendar-sheet strong {
  margin-top: 8px;
  color: var(--navy-800);
  font-family: Arial, sans-serif;
  font-size: 48px;
  line-height: 1;
}

.calendar-sheet small {
  margin-top: 5px;
  color: var(--blue-500);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .18em;
}

.megaphone svg {
  position: absolute;
  width: 80px;
  right: 34px;
  bottom: 18px;
  fill: #fff3df;
  stroke: var(--orange-500);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 1.45;
}

.menu-card > p {
  margin-bottom: 23px;
  font-size: 12px;
  line-height: 1.9;
}

.menu-card > ul {
  display: flex;
  margin: auto 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.menu-card > ul li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 10px;
}

.menu-card > ul li::before {
  position: absolute;
  width: 7px;
  height: 4px;
  top: .7em;
  left: 1px;
  border-left: 1.5px solid var(--teal-500);
  border-bottom: 1.5px solid var(--teal-500);
  content: "";
  transform: rotate(-45deg);
}

.menu-pr > ul li::before { border-color: var(--orange-500); }
.menu-event > ul li::before { border-color: var(--blue-500); }

.recommend-box {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: 55px;
  margin-top: 28px;
  padding: 48px;
}

.recommend-copy h3 {
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.55;
}

.recommend-copy > p:last-child {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.industry-grid span {
  display: flex;
  min-height: 46px;
  padding: 9px 13px;
  border-radius: 12px;
  align-items: center;
  color: var(--ink);
  background: #f4f7f6;
  font-size: 10px;
  font-weight: 700;
}

.industry-grid i {
  display: grid;
  width: 27px;
  margin-right: 7px;
  place-items: center;
  font-size: 14px;
  font-style: normal;
}

.process-block {
  display: grid;
  grid-template-columns: .42fr 1.58fr;
  align-items: center;
  gap: 50px;
  margin-top: 28px;
  padding: 45px 48px;
  color: rgba(255, 255, 255, .6);
  background: var(--navy-900);
}

.process-title h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 25px;
}

.process-title > p:last-child {
  margin: 0;
  font-size: 10px;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps::before {
  position: absolute;
  height: 1px;
  top: 24px;
  right: 6%;
  left: 6%;
  background: rgba(67, 215, 197, .25);
  content: "";
}

.process-steps li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-steps li > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 13px;
  border: 4px solid var(--navy-900);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--teal-400);
  box-shadow: 0 0 0 1px rgba(67, 215, 197, .25);
  font-size: 9px;
  font-weight: 900;
  place-items: center;
}

.process-steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 11px;
}

.process-steps small {
  display: block;
  color: rgba(255, 255, 255, .42);
  font-size: 7px;
  line-height: 1.6;
}

/* FAQ */
.faq {
  background: #f2f5f3;
}

.faq-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  align-items: start;
  gap: 80px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 48px);
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 26px;
  font-size: 13px;
}

.accordion {
  border-top: 1px solid #cfd8dd;
}

.accordion details {
  border-bottom: 1px solid #cfd8dd;
}

.accordion summary {
  position: relative;
  display: flex;
  min-height: 84px;
  padding: 24px 58px 24px 54px;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.accordion summary::before {
  position: absolute;
  left: 3px;
  color: var(--teal-500);
  content: "Q";
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 700;
}

.accordion summary > span {
  position: absolute;
  width: 34px;
  height: 34px;
  right: 3px;
  border: 1px solid #c8d3d8;
  border-radius: 50%;
}

.accordion summary > span::before,
.accordion summary > span::after {
  position: absolute;
  width: 10px;
  height: 1px;
  top: 50%;
  left: 50%;
  background: var(--navy-800);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.accordion summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.answer {
  position: relative;
  padding: 0 34px 28px 54px;
}

.answer::before {
  position: absolute;
  left: 3px;
  top: -4px;
  color: var(--orange-500);
  content: "A";
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 700;
}

.answer p {
  margin: 0;
  font-size: 12px;
  line-height: 2;
}

/* Final CTA and footer */
.final-cta {
  position: relative;
  padding: 110px 0 125px;
  color: rgba(255, 255, 255, .68);
  background:
    radial-gradient(circle at 78% 20%, rgba(67, 215, 197, .12), transparent 30%),
    linear-gradient(128deg, var(--navy-950), #0c365b);
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
  opacity: .3;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 80px;
}

.cta-copy h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 51px);
  line-height: 1.45;
}

.cta-copy > p:last-child {
  margin: 0;
  line-height: 2;
}

.cta-action-card {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.cta-card-label {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-400);
  font-size: 10px;
  font-weight: 800;
}

.cta-action-card > strong {
  display: block;
  margin-bottom: 25px;
  color: var(--white);
  font-size: 27px;
  line-height: 1.5;
}

.cta-action-card > small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, .45);
  font-size: 9px;
  line-height: 1.7;
  text-align: center;
}

.cta-skyline {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 150px;
  opacity: .07;
}

.cta-skyline svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
}

.site-footer {
  padding-top: 75px;
  color: #8d9aa6;
  background: #061b2e;
}

.footer-main {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  padding-bottom: 55px;
}

.footer-logo {
  color: var(--white);
}

.footer-brand > p {
  max-width: 350px;
  margin: 22px 0 0;
  font-size: 11px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--teal-400);
  font-size: 8px;
  letter-spacing: .15em;
}

.footer-links a {
  font-size: 10px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-note {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-note p {
  margin: 0;
  color: rgba(255, 255, 255, .35);
  font-size: 8px;
  line-height: 1.7;
}

.footer-note p + p {
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-bottom .container {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .32);
  font-size: 8px;
  letter-spacing: .1em;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-bottom svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.mobile-cta {
  display: none;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
}

.reveal.reveal-delay {
  transition-delay: .15s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1160px) {
  :root { --container: 1000px; }

  .header-inner { grid-template-columns: auto 1fr auto; gap: 16px; }
  .global-nav { gap: 16px; }
  .global-nav a { font-size: 10px; }
  .print-button { display: none; }

  .hero-layout { gap: 30px; }
  .hero-visual { min-height: 480px; }
  .dashboard-card { width: 470px; }
  .floating-kobe { left: -5px; }

  .proof-item { padding: 24px 17px; gap: 12px; }
  .proof-number b { font-size: 27px; }

  .concept-card { padding: 55px; }
  .target-visual { transform: scale(.9); transform-origin: center; }
  .strength-card { padding: 30px 22px; }

  .audience-grid { grid-template-columns: 1fr; }
  .audience-side { grid-template-columns: repeat(2, 1fr); }
  .compact-card { display: grid; grid-template-columns: .6fr 1fr; align-items: center; column-gap: 20px; }
  .compact-note, .device-legend { grid-column: 1 / -1; }
  .device-visual { min-width: 230px; }

  .menu-card { min-height: 640px; padding: 27px; }
  .recommend-box { gap: 38px; padding: 40px; }
}

@media (max-width: 960px) {
  :root { --header-h: 68px; }
  .container { width: min(calc(100% - 36px), 860px); }
  .section-pad { padding: 95px 0; }

  .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .header-actions { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: flex;
    width: 44px;
    height: 44px;
    padding: 11px 10px;
    border: 0;
    border-radius: 12px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    color: inherit;
    background: rgba(255, 255, 255, .1);
    cursor: pointer;
  }
  .is-scrolled .menu-toggle { background: var(--cream-100); }
  .menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; border-radius: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .global-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    padding: 100px 32px 50px;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    flex-direction: column;
    color: var(--ink);
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  .menu-open .global-nav { opacity: 1; visibility: visible; transform: none; }
  .global-nav a { padding: 18px 5px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .global-nav a::after { display: none; }

  .hero { min-height: auto; padding: calc(var(--header-h) + 65px) 0 110px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 730px; }
  .hero h1 { font-size: clamp(42px, 7vw, 58px); }
  .hero-visual { width: min(100%, 620px); min-height: 475px; margin: 10px auto 0; }
  .dashboard-card { width: min(100%, 520px); left: 50%; right: auto; transform: translate(-50%, -50%); }
  .floating-mobile { right: 0; }
  .floating-kobe { left: 0; }

  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .09); }
  .proof-item:nth-child(3) { border-left: 1px solid rgba(255, 255, 255, .09); }

  .concept-card { grid-template-columns: 1fr; }
  .concept-copy { max-width: 700px; }
  .target-visual { width: min(100%, 570px); margin-inline: auto; transform: none; }
  .strength-grid { grid-template-columns: repeat(2, 1fr); }

  .data-overview-grid,
  .search-console-grid { grid-template-columns: 1fr; }
  .search-journey { grid-template-columns: 1fr; gap: 35px; }

  .media-comparison { grid-template-columns: 1fr; gap: 22px; }
  .comparison-arrow { display: grid; place-items: center; }
  .comparison-arrow svg { transform: rotate(90deg); }
  .comparison-panel { max-width: 650px; width: 100%; margin-inline: auto; }
  .visibility-equation { grid-template-columns: 1fr auto 1fr; }
  .visibility-equation .operator:nth-of-type(3) { display: none; }
  .visibility-equation .equation-result { grid-column: 1 / -1; }
  .visibility-equation .equals { display: none; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { display: grid; grid-template-columns: .8fr 1.2fr; grid-template-rows: auto auto 1fr auto; column-gap: 32px; min-height: auto; }
  .menu-card-top { grid-column: 1 / -1; }
  .menu-illustration { grid-row: 2 / 5; height: 100%; min-height: 310px; margin: 22px 0 0; }
  .menu-card h3 { margin-top: 25px; }
  .menu-card > p { margin-bottom: 15px; }
  .menu-card > ul { margin: 0; }
  .recommend-box { grid-template-columns: 1fr; }
  .process-block { grid-template-columns: 1fr; }

  .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro { position: static; max-width: 620px; }

  .final-cta-inner { grid-template-columns: 1fr; gap: 50px; }
  .cta-action-card { max-width: 560px; }

  .footer-main { grid-template-columns: 1fr; gap: 45px; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --header-h: 62px; }
  html { scroll-padding-top: calc(var(--header-h) + 12px); }
  body { padding-bottom: 72px; font-size: 14px; }
  .container { width: min(calc(100% - 28px), 580px); }
  .section-pad { padding: 76px 0; }
  .desktop-only { display: none; }
  .brand { gap: 8px; }
  .brand-mark { width: 34px; height: 38px; font-size: 18px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 6px; }
  .header-inner { width: calc(100% - 24px); }

  .eyebrow { margin-bottom: 16px; font-size: 9px; }
  .section-heading { margin-bottom: 39px; }
  .section-heading h2 { margin-bottom: 17px; font-size: 31px; line-height: 1.42; }
  .section-heading > p:last-child { font-size: 13px; line-height: 1.9; }

  .hero { padding: calc(var(--header-h) + 52px) 0 83px; }
  .hero-layout { gap: 18px; }
  .hero h1 { margin-bottom: 21px; font-size: clamp(34px, 10.5vw, 47px); line-height: 1.45; }
  .hero-lead { margin-bottom: 25px; font-size: 14px; line-height: 1.9; }
  .hero-actions { align-items: stretch; gap: 16px; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-note { margin-top: 5px; }
  .hero-visual { min-height: 390px; margin-top: 13px; }
  .dashboard-card { top: 49%; padding: 20px; border-radius: 22px; }
  .dashboard-head { padding-bottom: 17px; }
  .dashboard-head strong { font-size: 11px; }
  .live-badge { font-size: 6px; }
  .dashboard-main-number { grid-template-columns: .92fr 1fr; gap: 13px; padding: 27px 0 23px; }
  .dashboard-main-number strong { font-size: 37px; }
  .dashboard-metrics { gap: 8px; }
  .dash-metric { gap: 8px; padding: 11px 9px; }
  .metric-icon { width: 31px; height: 31px; border-radius: 10px; }
  .metric-icon svg { width: 16px; }
  .dash-metric strong { font-size: 16px; }
  .dash-metric small { font-size: 6px; }
  .floating-card { padding: 9px 11px; border-radius: 13px; }
  .floating-card strong { font-size: 15px; }
  .floating-card span { font-size: 6px; }
  .floating-mobile { top: -1px; right: -4px; }
  .floating-mobile svg { width: 20px; }
  .floating-kobe { bottom: 0; left: -3px; }
  .kobe-pin { width: 22px; height: 28px; }
  .kobe-pin::after { width: 6px; height: 6px; left: 6px; top: 6px; }
  .kobe-silhouette { height: 100px; }

  .proof-grid { width: 100%; grid-template-columns: 1fr 1fr; }
  .proof-item { min-height: 122px; padding: 20px 14px; align-items: flex-start; gap: 7px; flex-direction: column; }
  .proof-item:nth-child(odd) { border-left: 0; }
  .proof-number b { font-size: 25px; }
  .proof-item:nth-child(2) .proof-number { font-size: 22px; }
  .proof-item p { font-size: 8px; }

  .concept-card { gap: 35px; padding: 36px 24px; border-radius: 26px; }
  .concept-copy h2 { font-size: 36px; }
  .concept-copy > p:last-child { font-size: 12px; }
  .target-visual { grid-template-columns: .8fr 35px 1.2fr; min-height: 220px; }
  .scatter-group { height: 145px; }
  .scatter-group i { width: 7px; height: 7px; }
  .scatter-group span { font-size: 7px; }
  .scatter-group span strong { font-size: 8px; }
  .focus-target { width: 170px; height: 170px; }
  .ring-2 { inset: 28px; }
  .target-core { inset: 53px; }
  .target-core span { font-size: 12px; }
  .person { width: 9px; height: 9px; }
  .person::after { width: 13px; height: 7px; top: 11px; }
  .person-1 { top: 14px; left: 80px; }
  .person-2 { top: 75px; right: 11px; }
  .person-3 { bottom: 22px; left: 36px; }
  .person-4 { top: 47px; left: 13px; }
  .target-visual > p { right: 0; bottom: -10px; font-size: 8px; }
  .target-visual > p strong { font-size: 10px; }
  .strength-grid { grid-template-columns: 1fr; gap: 12px; }
  .strength-card { min-height: auto; padding: 27px 24px; }
  .strength-icon { width: 50px; height: 50px; margin-bottom: 20px; }
  .strength-card h3 { font-size: 17px; }
  .strength-card p { font-size: 12px; }

  .data-card, .search-console-card, .query-card { padding: 25px 20px; border-radius: 22px; }
  .card-head { gap: 12px; margin-bottom: 25px; }
  .card-head h3, .console-title h3 { font-size: 17px; }
  .highlight-pill { padding: 5px 8px; font-size: 8px; }
  .bar-row { grid-template-columns: 61px 1fr 38px; gap: 8px; }
  .bar-label b { font-size: 10px; }
  .bar-row strong { font-size: 9px; }
  .bar-row.featured strong { font-size: 10px; }
  .chart-caption { align-items: flex-start; font-size: 8px; }

  .donut-layout { grid-template-columns: 130px 1fr; gap: 14px; }
  .donut { width: 130px; height: 130px; }
  .donut::before { inset: 14px; }
  .donut-center strong { font-size: 25px; }
  .legend-row { grid-template-columns: 7px 1fr; gap: 6px; font-size: 7px; }
  .legend-row strong { grid-column: 2; margin-top: -4px; }
  .session-total { align-items: flex-end; gap: 4px; flex-direction: column; }
  .session-total strong { font-size: 14px; }
  .insight-callout { padding: 14px; }

  .search-journey { gap: 28px; padding: 26px 20px; border-radius: 22px; }
  .journey-intro h3 { font-size: 20px; }
  .journey-intro > p:last-child { font-size: 10px; }
  .journey-flow { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .journey-flow::before { display: none; }
  .journey-icon { width: 51px; height: 51px; }
  .journey-flow small { font-size: 7px; }

  .console-title { align-items: flex-start; }
  .console-metrics { grid-template-columns: 1fr 1fr; }
  .console-metrics > div:last-child { grid-column: 1 / -1; }
  .console-graph { height: 90px; }
  .query-list > div { min-height: 60px; }
  .query-text { font-size: 9px; }

  .content-bar-row { grid-template-columns: 35px 1fr; gap: 9px; }
  .topic-icon { width: 35px; height: 35px; }
  .content-bar-row > div > span { gap: 8px; }
  .content-bar-row b { font-size: 9px; line-height: 1.4; }
  .content-bar-row strong { font-size: 7px; }
  .audience-side { grid-template-columns: 1fr; }
  .compact-card { display: block; padding: 25px 22px; }
  .compact-head h3 { font-size: 19px; }
  .new-user-ring { width: 150px; height: 150px; }
  .device-visual { max-width: 250px; margin-inline: auto; }

  .visibility-heading p:last-child { font-size: 12px; }
  .comparison-panel { padding: 23px 18px; border-radius: 22px; }
  .comparison-title h3 { font-size: 16px; }
  .mock-page { height: 230px; padding: 20px 14px; }
  .comparison-panel ul { grid-template-columns: 1fr; gap: 8px; }
  .comparison-panel li { padding: 0 0 0 18px; text-align: left; }
  .comparison-panel li::before { top: .5em; left: 2px; transform: none; }
  .visibility-equation { grid-template-columns: 1fr; gap: 9px; padding: 18px; }
  .visibility-equation .operator { min-height: 20px; }
  .visibility-equation .operator:nth-of-type(3) { display: grid; }
  .visibility-equation .equals { display: grid; }
  .visibility-equation .equation-result { grid-column: 1; }
  .visibility-equation > span { min-height: 85px; }
  .visibility-statement { margin-top: 58px; gap: 6px; }
  .quote-mark { font-size: 64px; }
  .visibility-statement p { font-size: 17px; text-align: left; }

  .menu-card { display: flex; min-height: auto; padding: 25px 21px; }
  .menu-illustration { width: 100%; height: 185px; min-height: 0; margin: 20px 0 24px; }
  .menu-card h3 { margin-top: 0; font-size: 21px; }
  .menu-card > p { font-size: 11px; }
  .menu-card > ul { margin-top: 5px; }
  .recommend-box { gap: 24px; padding: 28px 20px; border-radius: 22px; }
  .recommend-copy h3 { font-size: 21px; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-grid span { font-size: 9px; }
  .process-block { gap: 30px; padding: 29px 20px; border-radius: 22px; }
  .process-steps { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .process-steps::before { display: none; }
  .process-title h3 { font-size: 22px; }

  .faq-layout { gap: 24px; }
  .faq-intro h2 { font-size: 33px; }
  .accordion summary { min-height: 76px; padding: 20px 48px 20px 36px; font-size: 12px; line-height: 1.7; }
  .accordion summary::before { font-size: 20px; }
  .accordion summary > span { width: 29px; height: 29px; }
  .answer { padding: 0 10px 24px 36px; }
  .answer::before { font-size: 20px; }
  .answer p { font-size: 10px; }

  .final-cta { padding: 80px 0 90px; }
  .final-cta-inner { gap: 35px; }
  .cta-copy h2 { font-size: 33px; }
  .cta-copy > p:last-child { font-size: 12px; }
  .cta-action-card { padding: 27px 20px; border-radius: 23px; }
  .cta-action-card > strong { font-size: 22px; }
  .button { min-height: 56px; padding: 13px 20px; font-size: 13px; }

  .site-footer { padding-top: 55px; }
  .footer-main { gap: 37px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .footer-note { padding: 20px 0; }
  .footer-bottom .container { min-height: 55px; }

  .mobile-cta {
    position: fixed;
    z-index: 990;
    display: block;
    right: 8px;
    bottom: 8px;
    left: 8px;
  }
  .mobile-cta a {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    min-height: 61px;
    padding: 10px 19px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 17px;
    align-items: center;
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--orange-400), #f6c87d);
    box-shadow: 0 12px 35px rgba(7, 31, 54, .32);
  }
  .mobile-cta span { font-size: 8px; font-weight: 700; line-height: 1; }
  .mobile-cta strong { font-size: 15px; line-height: 1.4; }
  .mobile-cta svg { grid-column: 2; grid-row: 1 / 3; width: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 24px); }
  .hero h1 { font-size: 32px; }
  .hero-visual { min-height: 360px; }
  .dashboard-card { padding: 17px 14px; }
  .dashboard-main-number strong { font-size: 32px; }
  .dash-metric { padding: 9px 7px; }
  .metric-icon { display: none; }
  .target-visual { transform: scale(.9); transform-origin: center; }
  .donut-layout { grid-template-columns: 115px 1fr; }
  .donut { width: 115px; height: 115px; }
  .premium-mock-ad { width: 90%; right: 5%; }
  .premium-mock-ad em { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .bar-track i, .content-bar-row em { width: var(--size); }
}

@media print {
  @page { size: A4; margin: 10mm; }
  :root { --cream-50: #fff; }
  html { scroll-padding-top: 0; }
  body { padding: 0; color: #20364a; background: #fff; font-size: 9pt; }
  .site-header, .mobile-cta, .hero-actions, .faq, .footer-links, .footer-bottom, .cta-pattern, .cta-skyline { display: none !important; }
  .hero { min-height: 0; padding: 18mm 8mm; color: #475c6e; background: #0b2e4f !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .hero-layout { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 25pt; }
  .hero-visual { min-height: 100mm; }
  .proof-strip, .visibility, .process-block, .final-cta, .site-footer { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .section-pad { padding: 14mm 0; }
  .concept-card, .data-card, .search-journey, .search-console-card, .query-card, .menu-card, .recommend-box, .process-block { box-shadow: none; break-inside: avoid; }
  .strength-grid, .menu-grid { break-inside: avoid; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-card { display: flex; min-height: 0; padding: 18px; }
  .menu-illustration { height: 120px; min-height: 0; }
  .media-comparison { grid-template-columns: 1fr 50px 1fr; }
  .comparison-arrow svg { transform: none; }
  .final-cta { padding: 15mm 0; }
  .final-cta-inner { grid-template-columns: 1fr .8fr; }
  .site-footer { display: block !important; padding-top: 8mm; }
  .footer-main { display: block; padding-bottom: 5mm; }
  .footer-note { border-top: 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .bar-track i, .content-bar-row em { width: var(--size) !important; }
}

/* Fresh blue & green screen theme */
@media screen {
  body {
    background: #f7fbfc;
  }

  .site-header {
    color: var(--navy-900);
    border-color: rgba(25, 84, 133, .1);
    background: rgba(241, 251, 251, .84);
    box-shadow: 0 5px 24px rgba(28, 91, 112, .06);
    backdrop-filter: blur(14px);
  }

  .site-header.is-scrolled,
  body.menu-open .site-header {
    color: var(--navy-900);
    border-color: rgba(25, 84, 133, .1);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 8px 30px rgba(28, 91, 112, .09);
  }

  .print-button {
    background: rgba(255, 255, 255, .72);
  }

  .hero {
    color: #527286;
    background:
      radial-gradient(circle at 78% 22%, rgba(66, 198, 211, .18), transparent 30%),
      radial-gradient(circle at 9% 78%, rgba(80, 207, 167, .15), transparent 28%),
      linear-gradient(128deg, #effaff 0%, #e8f8f4 56%, #f8fff9 100%);
  }

  .hero-grid {
    background-image:
      linear-gradient(rgba(25, 84, 133, .045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(25, 84, 133, .045) 1px, transparent 1px);
  }

  .hero-glow-a {
    border-color: rgba(53, 188, 174, .17);
    box-shadow: inset 0 0 110px rgba(67, 215, 197, .08);
  }

  .hero-glow-b {
    background: rgba(89, 177, 216, .08);
  }

  .eyebrow.light {
    color: #477185;
  }

  .eyebrow.light > span {
    background: var(--teal-500);
  }

  .hero h1 {
    color: #123d5b;
  }

  .hero h1 em {
    background: linear-gradient(90deg, #159d99, #299f7f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .light-link {
    color: var(--navy-800);
  }

  .hero-note strong {
    color: var(--navy-900);
  }

  .hero-note small {
    color: #7591a0;
  }

  .dashboard-card {
    border-color: rgba(45, 137, 165, .18);
    background: linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(236, 251, 248, .88));
    box-shadow: 0 30px 80px rgba(26, 91, 115, .16);
  }

  .dashboard-card::before {
    background: linear-gradient(120deg, rgba(255, 255, 255, .58), transparent 45%);
  }

  .dashboard-head {
    border-color: rgba(25, 84, 133, .1);
  }

  .dashboard-head strong,
  .dashboard-main-number strong,
  .dash-metric strong {
    color: var(--navy-900);
  }

  .live-badge {
    color: #557686;
    border-color: rgba(53, 188, 174, .24);
    background: rgba(53, 188, 174, .1);
  }

  .dashboard-main-number > div:first-child > span,
  .dash-metric small {
    color: #78919e;
  }

  .dashboard-main-number strong small {
    color: #688999;
  }

  .dash-metric {
    border-color: rgba(25, 84, 133, .08);
    background: rgba(255, 255, 255, .72);
  }

  .kobe-silhouette {
    opacity: .3;
  }

  .kobe-silhouette .mountains {
    fill: #8fd9ce;
    opacity: .5;
  }

  .kobe-silhouette .city {
    fill: #79b8d2;
  }

  .proof-strip {
    color: var(--navy-900);
    background: linear-gradient(90deg, #dff5f5, #e8f6fb 55%, #edf9f4);
    border-top: 1px solid rgba(53, 188, 174, .12);
    border-bottom: 1px solid rgba(53, 188, 174, .12);
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(3) {
    border-color: rgba(25, 84, 133, .1);
  }

  .proof-number,
  .proof-item:nth-child(2) .proof-number {
    color: var(--navy-900);
  }

  .proof-item p {
    color: #4f7180;
  }

  .visibility {
    color: #527286;
    background:
      radial-gradient(circle at 78% 12%, rgba(53, 188, 174, .16), transparent 28%),
      radial-gradient(circle at 7% 80%, rgba(67, 161, 207, .12), transparent 30%),
      linear-gradient(135deg, #edfaff 0%, #e7f8f3 58%, #f7fffb 100%);
  }

  .visibility::after {
    border-color: rgba(41, 143, 173, .05);
  }

  .visibility-heading h2,
  .comparison-title h3,
  .visibility-equation span strong {
    color: var(--navy-900);
  }

  .visibility-heading p:last-child {
    color: #527286;
  }

  .comparison-panel {
    border-color: rgba(25, 84, 133, .11);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 50px rgba(28, 91, 112, .08);
  }

  .kobetoku-panel {
    border-color: rgba(53, 188, 174, .28);
    background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(226, 250, 245, .9));
    box-shadow: 0 24px 60px rgba(28, 119, 118, .12);
  }

  .comparison-title span {
    color: #8ba0ab;
  }

  .comparison-panel li,
  .kobetoku-panel li {
    color: #5f7c8a;
  }

  .comparison-arrow svg {
    fill: rgba(255, 255, 255, .82);
    stroke: #30a9a2;
  }

  .visibility-equation {
    border-color: rgba(25, 84, 133, .11);
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 18px 45px rgba(28, 91, 112, .07);
  }

  .visibility-equation > span {
    background: rgba(231, 248, 247, .9);
  }

  .visibility-equation span small {
    color: #6f8996;
  }

  .visibility-equation .operator {
    color: #78a8b3;
  }

  .visibility-equation .equals {
    color: #26a69a;
  }

  .visibility-equation > .equation-result {
    border-color: rgba(40, 169, 154, .26);
    background: rgba(217, 246, 239, .92);
  }

  .visibility-equation .equation-result strong,
  .equation-result svg {
    color: #138c84;
    stroke: #138c84;
  }

  .quote-mark {
    color: rgba(40, 169, 154, .22);
  }

  .visibility-statement p {
    color: #537383;
  }

  .visibility-statement strong {
    color: var(--navy-900);
  }

  .process-block {
    color: #5b7888;
    border-color: rgba(25, 84, 133, .1);
    background:
      radial-gradient(circle at 12% 30%, rgba(66, 198, 211, .14), transparent 32%),
      linear-gradient(120deg, #e5f7fb, #e5f8f1);
    box-shadow: 0 18px 50px rgba(28, 91, 112, .08);
  }

  .process-title h3,
  .process-steps strong {
    color: var(--navy-900);
  }

  .process-steps::before {
    background: rgba(39, 159, 154, .26);
  }

  .process-steps li > span {
    border-color: #e7f8f4;
    color: var(--white);
    background: linear-gradient(145deg, #28aaa4, #42c89f);
    box-shadow: 0 0 0 1px rgba(39, 159, 154, .2), 0 8px 20px rgba(39, 159, 154, .16);
  }

  .process-steps small {
    color: #6e8996;
  }

  .final-cta {
    color: #3f6375;
    background:
      radial-gradient(circle at 78% 20%, rgba(61, 196, 185, .2), transparent 32%),
      radial-gradient(circle at 10% 90%, rgba(67, 161, 207, .12), transparent 28%),
      linear-gradient(128deg, #ddf4fa, #dbf5eb 60%, #f3fff6);
  }

  .cta-pattern {
    background-image: radial-gradient(rgba(25, 84, 133, .1) 1px, transparent 1px);
  }

  .cta-copy h2 {
    color: var(--navy-900);
  }

  .cta-action-card {
    border-color: rgba(25, 84, 133, .12);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 28px 70px rgba(28, 91, 112, .13);
  }

  .cta-action-card > strong {
    color: var(--navy-900);
  }

  .cta-action-card > small {
    color: #718b98;
  }

  .cta-skyline {
    opacity: .13;
  }

  .cta-skyline svg {
    fill: #3f9db1;
  }

  .site-footer {
    color: #4f6f7e;
    background: #dbeef2;
  }

  .footer-logo {
    color: var(--navy-900);
  }

  .footer-links strong {
    color: #188f8a;
  }

  .footer-links a:hover {
    color: var(--navy-900);
  }

  .footer-note,
  .footer-bottom {
    border-color: rgba(25, 84, 133, .1);
  }

  .footer-note p,
  .footer-bottom .container {
    color: #5f7b89;
  }
}

@media screen and (max-width: 1160px) {
  .about-layout {
    gap: 40px;
  }

  .about-window {
    right: 0;
  }

  .about-connection {
    grid-template-columns: 1fr 48px .8fr 48px 1fr;
    gap: 10px;
    padding-inline: 22px;
  }
}

@media screen and (max-width: 960px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .about-visual {
    width: min(100%, 650px);
    min-height: 560px;
    margin-inline: auto;
  }

  .about-window {
    right: 50%;
    transform: translateX(50%) rotate(1deg);
  }

  .about-connection {
    grid-template-columns: 1fr 38px .9fr 38px 1fr;
    margin-top: 35px;
  }

  .connection-side {
    gap: 8px;
  }

  .connection-icon {
    width: 44px;
    height: 44px;
  }
}

@media screen and (max-width: 640px) {
  .about-layout {
    gap: 24px;
  }

  .about-copy h2 {
    margin-bottom: 20px;
    font-size: 29px;
    line-height: 1.48;
  }

  .about-copy h2 small {
    font-size: .52em;
  }

  .about-copy h2 em::after {
    height: 7px;
    bottom: 6px;
  }

  .about-lead {
    margin-bottom: 22px;
    font-size: 12px;
    line-height: 1.9;
  }

  .about-topics {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 22px;
  }

  .about-topics > span {
    min-height: 63px;
    padding: 9px 11px;
  }

  .about-topic-icon {
    width: 39px;
    height: 39px;
  }

  .about-visual {
    min-height: 440px;
  }

  .about-visual::before {
    width: 340px;
    height: 340px;
    top: 53px;
  }

  .about-window {
    width: 100%;
    top: 32px;
    border-radius: 19px;
    transform: translateX(50%);
  }

  .about-window-bar {
    height: 29px;
  }

  .about-window-head {
    height: 47px;
    padding-inline: 14px;
  }

  .about-window-body {
    padding: 12px;
  }

  .about-feature-story {
    grid-template-columns: 1.04fr .96fr;
    min-height: 145px;
  }

  .story-art {
    min-height: 145px;
  }

  .story-sun {
    width: 40px;
    height: 40px;
    top: 20px;
    right: 22px;
  }

  .story-mountain {
    width: 140px;
    height: 80px;
  }

  .story-city {
    height: 32px;
  }

  .story-tower {
    width: 12px;
    height: 64px;
    bottom: 15px;
  }

  .story-tower::before {
    height: 18px;
    top: -20px;
    left: 3px;
  }

  .story-copy {
    padding: 16px 10px 15px 2px;
  }

  .story-copy strong {
    font-size: 14px;
  }

  .story-copy span {
    font-size: 6px;
  }

  .about-category-tabs {
    gap: 4px;
    margin: 9px 0;
  }

  .about-category-tabs span {
    padding: 3px 7px;
  }

  .about-story-grid {
    gap: 5px;
  }

  .about-story-grid > span {
    min-height: 82px;
    padding: 5px;
  }

  .mini-art {
    height: 34px;
    margin-bottom: 5px;
  }

  .about-story-grid b {
    font-size: 6px;
  }

  .about-float-tag {
    min-height: 37px;
    padding: 7px 10px;
    border-radius: 11px;
  }

  .tag-search {
    top: 10px;
    right: -5px;
  }

  .tag-found {
    bottom: 4px;
    left: -4px;
  }

  .about-connection {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 26px;
    padding: 22px 18px;
  }

  .connection-side,
  .connection-center {
    width: 100%;
    justify-content: flex-start;
  }

  .connection-center {
    padding: 3px 0;
  }

  .connection-line {
    width: 2px;
    height: 28px;
    margin-inline: 22px auto;
    background: linear-gradient(180deg, #8bc8d3, var(--teal-500));
  }

  .connection-line::after {
    top: auto;
    right: auto;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .connection-side strong {
    font-size: 9px;
  }
}

/* Official brand assets and regional reach */
.brand-logo-image {
  display: block;
  width: 142px;
  height: auto;
  object-fit: contain;
}

.footer-logo .brand-logo-image {
  width: 174px;
}

.about-mini-brand img {
  display: block;
  width: 88px;
  height: auto;
}

.connection-logo-image {
  display: block;
  width: 84px;
  height: auto;
  flex: 0 0 auto;
}

.reach-area {
  display: grid;
  grid-template-columns: .72fr 1.48fr;
  gap: clamp(28px, 4vw, 58px);
  margin-top: 58px;
  padding: clamp(27px, 3vw, 40px);
  border: 1px solid rgba(25, 84, 133, .09);
  border-radius: 26px;
  align-items: center;
  background:
    radial-gradient(circle at 92% 8%, rgba(67, 215, 197, .16), transparent 28%),
    linear-gradient(135deg, #f8fcfd, #f1faf7);
  box-shadow: 0 18px 55px rgba(26, 95, 115, .07);
}

.reach-area-copy .eyebrow {
  margin-bottom: 13px;
}

.reach-area-copy h3 {
  margin-bottom: 14px;
  color: var(--navy-950);
  font-size: clamp(25px, 2.35vw, 34px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -.025em;
}

.reach-area-copy h3 em {
  color: #168f8b;
  font-style: normal;
}

.reach-area-copy > p:last-child {
  color: #607d8a;
  font-size: 12px;
  line-height: 1.9;
}

.reach-route {
  padding: 21px 22px 18px;
  border: 1px solid rgba(25, 84, 133, .08);
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 40px rgba(25, 84, 133, .07);
}

.reach-route-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-bottom: 18px;
  align-items: center;
  color: #91a6ae;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .18em;
}

.reach-route-head strong {
  padding: 5px 12px;
  border-radius: 999px;
  color: #197f80;
  background: #e5f7f3;
  font-size: 7px;
  letter-spacing: .14em;
}

.reach-route-head span:last-child {
  text-align: right;
}

.reach-route ol {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.reach-route li {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.reach-route li:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 2px;
  top: 12px;
  left: 50%;
  background: linear-gradient(90deg, #8ecdd0, #6ccbb6);
  content: "";
}

.reach-route li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 26px;
  height: 26px;
  margin-bottom: 9px;
  border: 3px solid #fff;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #48a8c7, #2db8a7);
  box-shadow: 0 0 0 1px rgba(39, 159, 154, .23), 0 5px 12px rgba(39, 159, 154, .19);
  font-family: Arial, sans-serif;
  font-size: 6px;
  font-weight: 900;
}

.reach-route li strong {
  color: var(--navy-900);
  font-size: clamp(9px, .88vw, 12px);
  line-height: 1.35;
  white-space: nowrap;
}

.reach-route li small {
  margin-top: 3px;
  color: #9aabb2;
  font-size: clamp(4px, .42vw, 5px);
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}

.reach-route li.is-center > span {
  width: 32px;
  height: 32px;
  margin-top: -3px;
  margin-bottom: 6px;
  background: linear-gradient(145deg, #1b879f, #21a77f);
  box-shadow: 0 0 0 4px rgba(57, 194, 167, .12), 0 8px 18px rgba(31, 139, 135, .24);
}

.reach-route li.is-center strong {
  color: #168f8b;
  font-size: clamp(11px, 1.05vw, 14px);
}

.reach-route > p {
  display: flex;
  margin-top: 17px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #65828e;
  font-size: 8px;
  font-weight: 700;
}

.reach-route > p i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2fbaa8;
  box-shadow: 0 0 0 4px rgba(47, 186, 168, .12);
}

.reach-area + .about-connection {
  margin-top: 24px;
}

@media screen and (max-width: 960px) {
  .reach-area {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reach-area-copy {
    max-width: 640px;
  }

  .reach-route li strong {
    font-size: 11px;
  }
}

@media screen and (max-width: 640px) {
  .brand-logo-image {
    width: 116px;
  }

  .footer-logo .brand-logo-image {
    width: 154px;
  }

  .about-mini-brand img {
    width: 78px;
  }

  .reach-area {
    margin-top: 36px;
    padding: 24px 16px 20px;
    border-radius: 21px;
  }

  .reach-area-copy h3 {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .reach-area-copy > p:last-child {
    font-size: 11px;
  }

  .reach-route {
    padding: 17px 12px 15px;
    border-radius: 16px;
  }

  .reach-route-head {
    margin-bottom: 17px;
  }

  .reach-route ol {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 21px;
  }

  .reach-route li:nth-child(4)::after,
  .reach-route li:nth-child(8)::after {
    display: none;
  }

  .reach-route li strong,
  .reach-route li.is-center strong {
    font-size: 10px;
  }

  .reach-route li small {
    font-size: 4px;
  }

  .reach-route > p {
    margin-top: 15px;
    font-size: 7px;
  }

  .connection-logo-image {
    width: 77px;
  }
}

/* Contact form */
.contact-section {
  position: relative;
  color: var(--navy-900);
  background:
    radial-gradient(circle at 8% 12%, rgba(69, 189, 204, .16), transparent 25%),
    radial-gradient(circle at 92% 86%, rgba(67, 215, 197, .18), transparent 27%),
    linear-gradient(145deg, #f3fbfd, #eefaf6 65%, #f9fdfb);
  overflow: hidden;
}

.contact-orb {
  position: absolute;
  border: 1px solid rgba(46, 161, 170, .08);
  border-radius: 50%;
  pointer-events: none;
}

.contact-orb-a {
  width: 410px;
  height: 410px;
  top: -230px;
  left: -170px;
  box-shadow: 0 0 0 60px rgba(68, 185, 199, .025);
}

.contact-orb-b {
  width: 520px;
  height: 520px;
  right: -310px;
  bottom: -260px;
  box-shadow: 0 0 0 75px rgba(57, 190, 160, .025);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: clamp(42px, 6vw, 82px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: calc(var(--header-h) + 34px);
}

.contact-intro h2 {
  margin-bottom: 24px;
  color: var(--navy-950);
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: -.04em;
}

.contact-intro h2 em {
  position: relative;
  color: #168f8b;
  font-style: normal;
}

.contact-intro h2 em::after {
  position: absolute;
  z-index: -1;
  height: 11px;
  right: -4px;
  bottom: 8px;
  left: -4px;
  border-radius: 99px;
  background: rgba(67, 215, 197, .18);
  content: "";
}

.contact-intro-lead {
  max-width: 430px;
  margin-bottom: 34px;
  color: #567482;
  font-size: 13px;
  line-height: 2;
}

.contact-flow {
  position: relative;
  display: grid;
  gap: 17px;
  margin-bottom: 30px;
}

.contact-flow::before {
  position: absolute;
  width: 2px;
  top: 19px;
  bottom: 19px;
  left: 18px;
  background: linear-gradient(#77c7d2, #4bc5a8);
  content: "";
}

.contact-flow > span {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
}

.contact-flow i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  grid-row: 1 / 3;
  border: 4px solid #eefaf7;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #4aaac4, #34bda2);
  box-shadow: 0 7px 18px rgba(37, 153, 153, .18);
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
}

.contact-flow b {
  align-self: end;
  font-size: 12px;
}

.contact-flow small {
  align-self: start;
  margin-top: 3px;
  color: #7d939c;
  font-size: 8px;
}

.contact-assurance {
  display: flex;
  max-width: 430px;
  padding: 17px 18px;
  border: 1px solid rgba(28, 143, 136, .12);
  border-radius: 17px;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, .72);
}

.contact-assurance svg {
  width: 32px;
  flex: 0 0 auto;
  fill: none;
  stroke: #209c90;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-assurance p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.contact-assurance strong {
  margin-bottom: 4px;
  font-size: 11px;
}

.contact-assurance small {
  color: #78909a;
  font-size: 7px;
  line-height: 1.65;
}

.contact-form-card {
  padding: clamp(23px, 3vw, 39px);
  border: 1px solid rgba(25, 84, 133, .1);
  border-radius: 28px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 30px 80px rgba(30, 96, 116, .14);
}

.contact-form-head {
  display: flex;
  margin-bottom: 23px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e8eff0;
  align-items: center;
  justify-content: space-between;
  color: #718994;
}

.contact-form-head > span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  font-weight: 800;
}

.contact-form-head > span i {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1.5px solid #31a89d;
  border-radius: 50%;
}

.contact-form-head > span i::before,
.contact-form-head > span i::after {
  position: absolute;
  width: 1px;
  left: 6px;
  background: #31a89d;
  content: "";
  transform-origin: bottom;
}

.contact-form-head > span i::before {
  height: 4px;
  top: 3px;
}

.contact-form-head > span i::after {
  height: 3px;
  top: 5px;
  transform: rotate(120deg);
}

.contact-form-head > small {
  color: #8799a2;
  font-size: 7px;
}

.contact-form-head > small b,
.contact-field label b,
.contact-privacy b {
  color: #e16969;
}

.contact-loading,
.contact-config-error {
  padding: 28px 20px;
  border-radius: 14px;
  color: #6f858f;
  background: #f4f8f8;
  font-size: 11px;
  text-align: center;
}

.contact-config-error {
  color: #a44e4e;
  background: #fff3f3;
}

.contact-recipient {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: 24px;
  padding: 13px 15px;
  border: 1px solid rgba(37, 155, 146, .11);
  border-radius: 14px;
  align-items: center;
  column-gap: 10px;
  background: linear-gradient(90deg, #eff9fb, #eefaf5);
}

.contact-recipient > span {
  grid-row: 1 / 3;
  padding: 5px 8px;
  border-radius: 99px;
  color: #167f7b;
  background: #dff4ef;
  font-size: 7px;
  font-weight: 900;
}

.contact-recipient strong {
  font-size: 10px;
}

.contact-recipient small {
  margin-top: 2px;
  color: #78909a;
  font-size: 6px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
}

.contact-form-grid-bottom {
  margin-top: 24px;
}

.contact-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-field label,
.contact-fieldset legend {
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 800;
}

.contact-field label b {
  font-size: 8px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #dce7e9;
  border-radius: 12px;
  outline: none;
  color: var(--navy-900);
  background: #f9fbfb;
  font: inherit;
  font-size: 10px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-field input,
.contact-field select {
  height: 48px;
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 150px;
  padding: 14px;
  line-height: 1.8;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #a8b5ba;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #35b7ac;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(53, 183, 172, .1);
}

.contact-select-wrap {
  position: relative;
}

.contact-select-wrap select {
  padding-right: 42px;
  appearance: none;
}

.contact-select-wrap svg {
  position: absolute;
  width: 17px;
  top: 50%;
  right: 14px;
  fill: none;
  stroke: #65a2ac;
  stroke-width: 1.8;
  pointer-events: none;
  transform: translateY(-50%);
}

.contact-fieldset {
  min-width: 0;
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

.contact-fieldset legend {
  width: 100%;
}

.contact-fieldset legend small {
  margin-left: 7px;
  color: #8a9ca4;
  font-size: 7px;
  font-weight: 500;
}

.contact-choice-grid {
  display: grid;
  gap: 8px;
}

.area-choice-grid {
  grid-template-columns: repeat(4, 1fr);
}

.menu-choice-grid {
  grid-template-columns: repeat(2, 1fr);
}

.contact-choice {
  position: relative;
  cursor: pointer;
}

.contact-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-choice > span {
  display: flex;
  min-height: 39px;
  padding: 8px 10px;
  border: 1px solid #dce7e9;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #617c88;
  background: #f9fbfb;
  font-size: 8px;
  font-weight: 700;
  text-align: center;
  transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.contact-choice > span i {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 1px solid #bdcdd1;
  border-radius: 4px;
  background: #fff;
}

.contact-choice input:focus-visible + span {
  outline: 3px solid rgba(53, 183, 172, .2);
  outline-offset: 2px;
}

.contact-choice input:checked + span {
  border-color: rgba(37, 166, 153, .36);
  color: #147f7a;
  background: #eaf8f5;
  transform: translateY(-1px);
}

.contact-choice input:checked + span i {
  border-color: #2dae9f;
  background: #2dae9f;
}

.contact-choice input:checked + span i::after {
  position: absolute;
  width: 6px;
  height: 3px;
  top: 3px;
  left: 3px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  content: "";
  transform: rotate(-45deg);
}

.contact-message-field {
  margin-top: 24px;
}

.contact-message-field > small {
  margin-top: 7px;
  color: #8a9ca4;
  font-size: 7px;
  line-height: 1.6;
}

.contact-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  left: -10000px;
  overflow: hidden;
}

.contact-privacy {
  position: relative;
  display: block;
  margin-top: 25px;
  cursor: pointer;
}

.contact-privacy input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-privacy > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #526f7d;
  font-size: 9px;
  font-weight: 700;
}

.contact-privacy > span > i {
  position: relative;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  border: 1px solid #b8cbd0;
  border-radius: 5px;
  background: #fff;
}

.contact-privacy input:checked + span > i {
  border-color: #2dae9f;
  background: #2dae9f;
}

.contact-privacy input:checked + span > i::after {
  position: absolute;
  width: 8px;
  height: 4px;
  top: 5px;
  left: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  transform: rotate(-45deg);
}

.contact-privacy input:focus-visible + span > i {
  outline: 3px solid rgba(53, 183, 172, .2);
  outline-offset: 2px;
}

.contact-privacy a {
  color: #168f8b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-privacy-note {
  margin: 7px 0 0 27px;
  color: #8a9ca4;
  font-size: 7px;
}

.contact-submit {
  display: flex;
  width: 100%;
  min-height: 62px;
  margin-top: 24px;
  padding: 14px 22px;
  border: 0;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #fff;
  background: linear-gradient(135deg, #197f9f, #25a68f);
  box-shadow: 0 15px 32px rgba(31, 139, 143, .22);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.contact-submit:hover {
  box-shadow: 0 18px 37px rgba(31, 139, 143, .28);
  transform: translateY(-2px);
}

.contact-submit:disabled {
  opacity: .68;
  cursor: wait;
  transform: none;
}

.contact-submit svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-submit-note,
.contact-form-status {
  margin-top: 10px;
  color: #82969f;
  font-size: 7px;
  line-height: 1.7;
  text-align: center;
}

.contact-form-status {
  min-height: 0;
  margin-top: 4px;
  color: #168f8b;
  font-weight: 700;
}

.contact-confirm-step,
.contact-complete-step {
  outline: none;
}

.contact-confirm-heading {
  margin-bottom: 25px;
  text-align: center;
}

.contact-confirm-heading > span,
.contact-complete-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 13px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #27a7b0, #25a68f);
  box-shadow: 0 10px 24px rgba(31, 139, 143, .2);
  font-size: 21px;
  font-weight: 900;
}

.contact-confirm-heading h3,
.contact-complete-step h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.45;
}

.contact-confirm-heading p,
.contact-complete-step p {
  margin: 7px 0 0;
  color: #6d8490;
  font-size: 10px;
  line-height: 1.8;
}

.contact-confirm-list {
  overflow: hidden;
  margin: 0;
  border: 1px solid #dce7e9;
  border-radius: 15px;
  background: #fff;
}

.contact-confirm-row {
  display: grid;
  grid-template-columns: minmax(130px, .34fr) 1fr;
  border-bottom: 1px solid #e7eeee;
}

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

.contact-confirm-row dt,
.contact-confirm-row dd {
  min-width: 0;
  margin: 0;
  padding: 15px 17px;
  font-size: 10px;
  line-height: 1.75;
}

.contact-confirm-row dt {
  color: #496b78;
  background: #f1f8f7;
  font-weight: 800;
}

.contact-confirm-row dd {
  color: var(--navy-900);
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.contact-confirm-actions {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) 1fr;
  margin-top: 24px;
  gap: 12px;
}

.contact-back,
.contact-send {
  display: flex;
  min-height: 58px;
  padding: 13px 18px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.contact-back {
  border: 1px solid #cfdfe2;
  color: #496b78;
  background: #fff;
}

.contact-send {
  border: 0;
  gap: 10px;
  color: #fff;
  background: linear-gradient(135deg, #197f9f, #25a68f);
  box-shadow: 0 13px 28px rgba(31, 139, 143, .2);
}

.contact-send svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-back:hover,
.contact-send:hover {
  transform: translateY(-2px);
}

.contact-back:focus-visible,
.contact-send:focus-visible {
  outline: 3px solid rgba(53, 183, 172, .22);
  outline-offset: 2px;
}

.contact-back:disabled,
.contact-send:disabled {
  opacity: .65;
  cursor: wait;
  transform: none;
}

.contact-complete-step {
  padding: clamp(34px, 5vw, 62px) 20px;
  border: 1px solid rgba(37, 166, 143, .17);
  border-radius: 18px;
  background: linear-gradient(135deg, #f2fbfb, #f0faf5);
  text-align: center;
}

.mobile-cta {
  transition: opacity .25s ease, transform .25s ease;
}

.mobile-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}

@media screen and (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-intro {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 34px;
  }

  .contact-intro .eyebrow,
  .contact-intro h2,
  .contact-intro-lead {
    grid-column: 1 / -1;
  }

  .contact-intro-lead {
    max-width: 720px;
  }

  .contact-flow,
  .contact-assurance {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 640px) {
  .contact-layout {
    gap: 29px;
  }

  .contact-intro {
    display: block;
  }

  .contact-intro h2 {
    margin-bottom: 17px;
    font-size: 37px;
  }

  .contact-intro-lead {
    margin-bottom: 26px;
    font-size: 12px;
    line-height: 1.9;
  }

  .contact-flow {
    margin-bottom: 24px;
  }

  .contact-assurance {
    max-width: none;
  }

  .contact-form-card {
    padding: 21px 15px 23px;
    border-radius: 21px;
  }

  .contact-form-head {
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .contact-recipient {
    margin-bottom: 20px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-field-wide {
    grid-column: auto;
  }

  .contact-field input,
  .contact-field select {
    height: 50px;
    font-size: 11px;
  }

  .contact-field textarea {
    font-size: 11px;
  }

  .area-choice-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .menu-choice-grid {
    grid-template-columns: 1fr;
  }

  .area-choice > span {
    min-height: 40px;
    padding: 7px 4px;
    gap: 4px;
    font-size: 7px;
  }

  .area-choice > span i {
    width: 12px;
    height: 12px;
  }

  .area-choice input:checked + span i::after {
    width: 5px;
    height: 2px;
    top: 3px;
    left: 2px;
  }

  .contact-fieldset legend small {
    display: block;
    margin: 4px 0 0;
  }

  .contact-message-field {
    margin-top: 21px;
  }

  .contact-privacy > span {
    align-items: flex-start;
    line-height: 1.7;
  }

  .contact-submit {
    min-height: 59px;
  }

  .contact-confirm-row {
    grid-template-columns: 1fr;
  }

  .contact-confirm-row dt,
  .contact-confirm-row dd {
    padding: 11px 13px;
    font-size: 11px;
  }

  .contact-confirm-row dt {
    padding-bottom: 7px;
  }

  .contact-confirm-row dd {
    padding-top: 7px;
  }

  .contact-confirm-actions {
    grid-template-columns: 1fr;
  }

  .contact-back,
  .contact-send {
    min-height: 56px;
    font-size: 11px;
  }
}

@media print {
  .contact-section {
    display: none !important;
  }
}

/* Readability and compact layout */
@media screen {
  .section-pad {
    padding: 86px 0;
  }

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

  .compact-heading {
    margin-bottom: 36px;
  }

  .hero-note small {
    font-size: 11px;
    letter-spacing: .08em;
  }

  .micro-label,
  .dashboard-main-number > div:first-child > span {
    font-size: 10px;
  }

  .live-badge {
    font-size: 9px;
  }

  .dash-metric small {
    font-size: 11px;
  }

  .floating-card p span {
    font-size: 11px;
  }

  .proof-item {
    min-height: 128px;
    padding-block: 23px;
  }

  .proof-item p {
    font-size: 12px;
    line-height: 1.55;
  }

  .about-lead {
    max-width: 900px;
    font-size: 16px;
    line-height: 1.9;
  }

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

  .about-copy {
    max-width: none;
  }

  .about-topics {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-topics b {
    font-size: 14px;
  }

  .about-topics small {
    font-size: 11px;
  }

  .window-address,
  .story-copy small,
  .story-copy span,
  .about-story-grid small {
    display: none;
  }

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

  .about-category-tabs span {
    font-size: 11px;
  }

  .about-story-grid b {
    font-size: 10px;
  }

  .about-float-tag b {
    font-size: 11px;
  }

  .reach-area {
    margin-top: 38px;
  }

  .reach-area-copy > p:last-child {
    font-size: 14px;
    line-height: 1.8;
  }

  .reach-route-head {
    display: block;
    margin-bottom: 20px;
    text-align: center;
  }

  .reach-route-head strong {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .03em;
  }

  .reach-route li > span {
    font-size: 9px;
  }

  .reach-route li strong,
  .reach-route li.is-center strong {
    font-size: 13px;
  }

  .reach-route > p {
    font-size: 11px;
  }

  .strength-grid {
    margin-top: 0;
  }

  .strength-card {
    min-height: 278px;
    padding: 28px 24px;
  }

  .strength-icon {
    margin-bottom: 22px;
  }

  .strength-card h3 {
    font-size: 19px;
  }

  .strength-card p {
    font-size: 15px;
    line-height: 1.75;
  }

  .card-kicker {
    font-size: 11px;
  }

  .card-head h3 {
    font-size: 23px;
  }

  .bar-label b {
    font-size: 14px;
  }

  .bar-label small {
    display: none;
  }

  .bar-row strong,
  .bar-row.featured strong {
    font-size: 14px;
  }

  .chart-caption {
    font-size: 13px;
  }

  .donut-center span,
  .legend-row,
  .session-total span {
    font-size: 11px;
  }

  .legend-row strong {
    font-size: 13px;
  }

  .insight-callout p {
    font-size: 13px;
  }

  .insight-callout strong {
    font-size: 14px;
  }

  .quick-data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 22px;
  }

  .quick-data-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    min-height: 150px;
    padding: 27px 30px;
    border: 1px solid rgba(25, 84, 133, .09);
    border-radius: 20px;
    align-items: center;
    column-gap: 22px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(25, 84, 133, .05);
  }

  .quick-data-card > span {
    grid-column: 1 / -1;
    color: #168f8b;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
  }

  .quick-data-card > strong {
    color: var(--navy-900);
    font-size: 45px;
    line-height: 1;
  }

  .quick-data-card > strong small {
    color: #168f8b;
    font-size: 17px;
  }

  .quick-data-card p {
    margin: 0;
    color: #5f7986;
    font-size: 14px;
    line-height: 1.75;
  }

  .data-source {
    font-size: 12px;
  }

  .comparison-title span {
    font-size: 10px;
  }

  .comparison-title h3 {
    font-size: 21px;
  }

  .comparison-panel li {
    font-size: 12px;
  }

  .premium-mock-ad small,
  .premium-mock-ad em {
    display: none;
  }

  .article-sheet em,
  .calendar-sheet small {
    display: none;
  }

  .premium-mock-ad strong {
    font-size: 14px;
  }

  .menu-card {
    min-height: 455px;
  }

  .menu-tag {
    font-size: 11px;
  }

  .menu-card > p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.8;
  }

  .faq-intro > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.8;
  }

  .accordion summary {
    font-size: 16px;
  }

  .answer p {
    font-size: 15px;
    line-height: 1.8;
  }

  .contact-intro-lead {
    font-size: 16px;
    line-height: 1.8;
  }

  .contact-assurance strong {
    font-size: 14px;
  }

  .contact-assurance small {
    font-size: 11px;
  }

  .contact-form-head > span,
  .contact-form-head > small {
    font-size: 11px;
  }

  .contact-recipient > span {
    font-size: 11px;
  }

  .contact-recipient strong {
    font-size: 14px;
  }

  .contact-recipient small {
    font-size: 11px;
  }

  .contact-field label,
  .contact-fieldset legend {
    font-size: 13px;
  }

  .contact-fieldset legend small,
  .contact-message-field > small {
    font-size: 11px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    font-size: 14px;
  }

  .contact-choice > span {
    font-size: 12px;
  }

  .contact-privacy > span {
    font-size: 12px;
  }

  .contact-privacy-note,
  .contact-submit-note,
  .contact-form-status {
    font-size: 11px;
  }

  .contact-submit {
    font-size: 15px;
  }

  .footer-brand > p,
  .footer-links a {
    font-size: 13px;
  }

  .site-footer {
    padding-top: 52px;
  }

  .footer-main {
    gap: 50px;
    padding-bottom: 36px;
  }

  .footer-links-simple {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
  }

  .footer-links strong,
  .footer-note p {
    font-size: 10px;
  }
}

@media screen and (max-width: 960px) {
  .section-pad {
    padding: 72px 0;
  }

  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strength-card {
    min-height: 250px;
  }

  .menu-card {
    min-height: 390px;
  }

  .contact-intro {
    display: block;
  }

  .contact-assurance {
    max-width: 540px;
  }

  .about-copy {
    max-width: none;
  }

  .footer-links-simple {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 640px) {
  .section-pad {
    padding: 60px 0;
  }

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

  .proof-item p {
    font-size: 11px;
  }

  .about-lead {
    font-size: 14px;
  }

  .about-topics {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-topics b {
    font-size: 13px;
  }

  .about-topics small {
    font-size: 10px;
  }

  .about-visual {
    min-height: 410px;
  }

  .story-copy strong {
    font-size: 16px;
  }

  .reach-area-copy > p:last-child {
    font-size: 13px;
  }

  .reach-route li strong,
  .reach-route li.is-center strong {
    font-size: 11px;
  }

  .reach-route > p {
    font-size: 9px;
  }

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

  .strength-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .strength-card p {
    font-size: 14px;
  }

  .data-card {
    padding: 23px 18px;
  }

  .card-head h3 {
    font-size: 20px;
  }

  .quick-data-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quick-data-card {
    min-height: 128px;
    padding: 21px 20px;
  }

  .quick-data-card > strong {
    font-size: 38px;
  }

  .quick-data-card p {
    font-size: 13px;
  }

  .comparison-panel li {
    font-size: 11px;
  }

  .menu-card {
    min-height: auto;
  }

  .menu-card > p {
    font-size: 14px;
  }

  .accordion summary,
  .answer p {
    font-size: 14px;
  }

  .contact-intro-lead {
    font-size: 14px;
  }

  .contact-field label,
  .contact-fieldset legend {
    font-size: 12px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    font-size: 14px;
  }

  .area-choice > span {
    font-size: 10px;
  }

  .footer-links-simple {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  /* Keep the mobile page concise without hiding any core information. */
  .hero {
    padding-bottom: 58px;
  }

  .hero-visual {
    min-height: 320px;
  }

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

  .strength-card {
    padding: 18px 15px;
  }

  .strength-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .strength-card h3 {
    font-size: 16px;
    line-height: 1.55;
  }

  .strength-card p {
    font-size: 12px;
    line-height: 1.7;
  }

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

  .quick-data-card {
    display: flex;
    min-height: 142px;
    padding: 18px 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .quick-data-card > strong {
    font-size: 34px;
  }

  .quick-data-card p {
    font-size: 12px;
    line-height: 1.55;
  }

  .media-comparison {
    gap: 16px;
  }

  .comparison-panel {
    padding-bottom: 18px;
  }

  .comparison-arrow {
    margin-block: -4px;
  }

  .menu-grid {
    width: calc(100% + 14px);
    margin-right: -14px;
    padding: 2px 14px 18px 0;
    grid-template-columns: none;
    grid-auto-columns: min(84%, 270px);
    grid-auto-flow: column;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .menu-card {
    scroll-snap-align: start;
  }

  .menu-illustration {
    height: 165px;
    margin: 14px 0 18px;
  }

  .contact-layout {
    gap: 22px;
  }

  .contact-intro-lead {
    margin-bottom: 18px;
  }

  .contact-assurance {
    padding: 13px 14px;
  }

  .contact-form-card {
    padding-top: 18px;
  }

  .contact-form-grid {
    gap: 13px;
  }

  .contact-fieldset,
  .contact-message-field,
  .contact-privacy,
  .contact-submit {
    margin-top: 18px;
  }

  .contact-field textarea {
    min-height: 118px;
  }
}

@media screen and (min-width: 961px) {
  .global-nav a {
    font-size: 12px;
  }
}

@media screen {
  .footer-note p,
  .footer-bottom .container {
    font-size: 11px;
  }

  .visibility-impact {
    display: inline-block;
    margin-top: 10px;
    color: #168f8b;
    font-size: clamp(20px, 2.1vw, 29px);
    font-weight: 900;
    line-height: 1.55;
  }
}

@media screen and (max-width: 640px) {
  .visibility-impact {
    margin-top: 8px;
    font-size: 19px;
  }
}

/* Emphasize Kobe as the center of the eight-city reach area. */
@media screen {
  .reach-route li.is-center {
    z-index: 2;
    transform: translateY(-5px);
  }

  .reach-route li.is-center > span {
    width: 44px;
    height: 44px;
    margin-top: -9px;
    margin-bottom: 7px;
    font-size: 12px;
  }

  .reach-route li.is-center strong {
    font-size: 18px;
  }
}

@media screen and (max-width: 640px) {
  .reach-route li.is-center {
    transform: translateY(-3px);
  }

  .reach-route li.is-center > span {
    width: 38px;
    height: 38px;
    margin-top: -6px;
    margin-bottom: 7px;
    font-size: 11px;
  }

  .reach-route li.is-center strong {
    font-size: 15px;
  }
}

/* Limited premium advertising offer */
.campaign-banner {
  position: relative;
  z-index: 5;
  padding: calc(var(--header-h) + 14px) 0 14px;
  background:
    radial-gradient(circle at 78% 22%, rgba(66, 198, 211, .18), transparent 30%),
    radial-gradient(circle at 9% 78%, rgba(80, 207, 167, .15), transparent 28%),
    linear-gradient(128deg, #effaff 0%, #e8f8f4 56%, #f8fff9 100%);
}

.campaign-offer {
  position: relative;
  display: grid;
  min-height: 96px;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, .58);
  border-radius: 22px;
  align-items: center;
  grid-template-columns: minmax(155px, 1fr) minmax(205px, 1.15fr) auto auto auto;
  grid-template-rows: auto auto;
  column-gap: clamp(12px, 2vw, 26px);
  row-gap: 6px;
  color: #fff;
  background: linear-gradient(112deg, #a90f29, #d52a38 58%, #a30b27);
  box-shadow: 0 18px 45px rgba(94, 6, 29, .32), 0 8px 22px rgba(255, 199, 104, .15);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.campaign-offer::before {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -100px;
  top: -105px;
  border: 28px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
}

.campaign-offer:hover {
  box-shadow: 0 24px 56px rgba(85, 4, 25, .42), 0 10px 26px rgba(255, 199, 104, .2);
  transform: translateY(-2px);
}

.campaign-name {
  display: flex;
  grid-column: 1;
  grid-row: 1 / 3;
  flex-direction: column;
  line-height: 1.25;
}

.campaign-name small {
  margin-bottom: 5px;
  color: #ffd7a1;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}

.campaign-name strong {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.campaign-deadline {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.25;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.campaign-deadline strong {
  color: #ffe16f;
  font-size: 28px;
  font-weight: 900;
}

.campaign-slots {
  grid-column: 3;
  grid-row: 1 / 3;
  padding: 8px 12px;
  border-radius: 999px;
  color: #9d1028;
  background: linear-gradient(135deg, #ffe277, #ffc85d);
  box-shadow: 0 7px 18px rgba(90, 2, 25, .25);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.campaign-price {
  display: flex;
  grid-column: 4;
  grid-row: 1 / 3;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}

.campaign-price strong {
  color: #fff4a8;
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.035em;
}

.campaign-price small {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.campaign-regular-price {
  color: rgba(255, 255, 255, .78) !important;
  font-size: 9px !important;
  letter-spacing: .03em;
  line-height: 1.3;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.campaign-sale-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.campaign-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  grid-column: 5;
  grid-row: 1 / 3;
  min-height: 46px;
  padding: 10px 15px;
  border-radius: 13px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #a6122c;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.campaign-action svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.campaign-countdown {
  display: flex;
  min-width: 0;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 2;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  background: rgba(66, 0, 18, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  text-align: center;
  white-space: nowrap;
}

.campaign-countdown small {
  margin-bottom: 0;
  color: #ffd7a1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.campaign-countdown strong {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  letter-spacing: .02em;
}

.campaign-banner[hidden] {
  display: none !important;
}

.campaign-banner[hidden] + .hero {
  padding-top: calc(var(--header-h) + 80px);
}

.campaign-banner + .hero {
  padding-top: 80px;
}

.menu-price {
  display: flex;
  margin: -4px 0 13px;
  align-items: baseline;
  gap: 4px;
  color: #168f8b;
}

.menu-price strong {
  font-size: 22px;
  font-weight: 900;
}

.menu-price span {
  color: #5f7986;
  font-size: 12px;
  font-weight: 800;
}

.menu-status {
  display: inline-flex;
  align-self: flex-start;
  margin: -3px 0 13px;
  padding: 7px 12px;
  border: 1px solid rgba(211, 117, 56, .18);
  border-radius: 999px;
  color: #ba6330;
  background: #fff3e8;
  font-size: 13px;
  font-weight: 900;
}

.menu-card.is-paused .menu-illustration {
  filter: saturate(.55);
  opacity: .78;
}

@media screen and (max-width: 960px) {
  .campaign-offer {
    grid-template-columns: 1fr auto auto;
  }

  .campaign-deadline {
    grid-column: 1;
    grid-row: 2;
  }

  .campaign-name {
    grid-column: 1;
    grid-row: 1;
  }

  .campaign-price {
    grid-column: 3;
    grid-row: 1;
  }

  .campaign-action {
    grid-column: 3;
    grid-row: 2;
  }

  .campaign-slots {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .campaign-countdown {
    grid-column: 2;
    grid-row: 2;
  }

  .campaign-banner + .hero {
    padding-top: 65px;
  }

  .campaign-banner[hidden] + .hero {
    padding-top: calc(var(--header-h) + 65px);
  }

  .menu-price,
  .menu-status {
    grid-column: 2;
  }
}

@media screen and (max-width: 640px) {
  .campaign-banner {
    padding: calc(var(--header-h) + 10px) 0 10px;
  }

  .campaign-offer {
    min-height: 0;
    padding: 15px;
    border-radius: 18px;
    grid-template-columns: 1fr auto;
    gap: 8px 10px;
  }

  .campaign-name {
    grid-column: 1;
    grid-row: 1;
  }

  .campaign-name small {
    font-size: 9px;
  }

  .campaign-name strong {
    font-size: 15px;
    white-space: nowrap;
  }

  .campaign-slots {
    grid-column: 2;
    grid-row: 1;
    padding: 7px 10px;
    font-size: 11px;
  }

  .campaign-deadline {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 13px;
  }

  .campaign-deadline strong {
    font-size: 24px;
  }

  .campaign-price {
    grid-column: 2;
    grid-row: 3;
  }

  .campaign-price strong {
    font-size: 30px;
  }

  .campaign-price small {
    font-size: 10px;
  }

  .campaign-action {
    min-height: 42px;
    grid-column: 1 / -1;
    grid-row: 4;
    padding: 9px 11px;
    font-size: 11px;
  }

  .campaign-countdown {
    min-width: 0;
    grid-column: 1;
    grid-row: 3;
    padding: 7px 8px;
    flex-direction: column;
    gap: 0;
  }

  .campaign-countdown small {
    margin-bottom: 3px;
  }

  .campaign-countdown strong {
    font-size: 15px;
  }

  .campaign-banner + .hero {
    padding-top: 52px;
  }

  .campaign-banner[hidden] + .hero {
    padding-top: calc(var(--header-h) + 52px);
  }

  .menu-price,
  .menu-status {
    grid-column: auto;
  }
}

.menu-detail-copy {
  display: block;
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid rgba(25, 84, 133, .1);
  color: #4f7180;
  font-size: 13px;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  .menu-detail-copy {
    font-size: 12px;
    line-height: 1.75;
  }
}
