:root {
  --blue: #1264d8;
  --blue-light: #2f80ed;
  --blue-pale: #eaf3ff;
  --blue-soft: #f5f9ff;
  --orange: #ff6a00;
  --orange-hover: #e85f00;
  --navy: #172033;
  --text: #333333;
  --muted: #666666;
  --border: #d9e6f5;
  --white: #ffffff;
  --container: 1200px;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(18, 100, 216, 0.08);
  --shadow-strong: 0 14px 34px rgba(18, 100, 216, 0.13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.hero-lead,
.header-note,
.card h3,
.reason-item h3,
.check-list li,
.speaker-profile dt,
.speaker-profile dd,
.event-table dt,
.event-table dd,
.faq-question,
.faq-answer,
.final-cta h2 {
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: pretty;
  word-break: normal;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.keep-together {
  display: inline-block;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  transform: translateY(-150%);
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
}

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

/* Shared surfaces and badges */
.surface-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.number-badge {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  aspect-ratio: 1 / 1;
  margin: 0;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.number-badge--section {
  width: 40px;
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 8px;
  font-size: 15px;
}

.number-badge--card {
  width: 40px;
  color: var(--white);
  background: var(--blue);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(18, 100, 216, 0.2);
  font-size: 13px;
}

.icon-frame {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 72px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #deebfa;
  border-radius: 18px;
}

.icon-frame::before,
.icon-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
}

/* Header */
.site-header {
  height: 76px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(217, 230, 245, 0.72);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.logo-mark {
  width: 24px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 7px 10px 7px 10px;
  transform: rotate(30deg);
}

.header-note {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(125deg, #ffffff 0 55%, #eef6ff 55% 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -100px;
  width: 52%;
  height: 230px;
  background: #dcecff;
  border-radius: 50% 0 0;
  transform: rotate(-6deg);
  opacity: 0.75;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.hero-content {
  min-width: 0;
}

.eyebrow {
  display: inline-grid;
  min-height: 30px;
  place-items: center;
  margin: 0 0 14px;
  padding: 4px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 700;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(48px, 3.7vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.035em;
  font-weight: 800;
}

h1 span,
h2 span {
  color: var(--blue);
}

.hero-line {
  display: block;
  width: max-content;
  max-width: 100%;
  color: inherit;
}

.hero-line > span {
  display: inline-block;
}

.hero-line .keep-together {
  color: inherit;
}

.hero-lead {
  max-width: 620px;
  margin: 22px 0 0;
  font-weight: 500;
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 30px 0 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero-info > div {
  display: grid;
  align-content: center;
  min-height: 92px;
  padding: 14px 20px;
}

.hero-info > div + div {
  border-left: 1px solid var(--border);
}

.hero-info dt {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-info dd {
  margin: 2px 0 0 40px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5;
}

.info-icon {
  position: relative;
  display: grid;
  flex: 0 0 30px;
  place-items: center;
  width: 30px;
  aspect-ratio: 1 / 1;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 8px;
}

.info-icon::before,
.info-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.icon-calendar-small::before {
  width: 15px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-calendar-small::after {
  width: 11px;
  height: 4px;
  border-top: 2px solid currentColor;
  border-bottom: 2px dotted currentColor;
  transform: translate(-50%, -40%);
}

.icon-monitor-small::before {
  width: 17px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-monitor-small::after {
  width: 12px;
  height: 4px;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%, 6px);
}

.cta-button {
  position: relative;
  display: inline-grid;
  width: min(100%, 360px);
  min-height: 64px;
  place-items: center;
  margin-top: 24px;
  padding: 12px 58px 12px 30px;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(255, 106, 0, 0.22);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.cta-arrow {
  position: absolute;
  right: 25px;
  top: 50%;
  width: 11px;
  aspect-ratio: 1 / 1;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.cta-button:hover {
  background: var(--orange-hover);
  box-shadow: 0 13px 28px rgba(232, 95, 0, 0.26);
  transform: translateY(-2px);
}

.cta-button:focus-visible,
.faq-question:focus-visible {
  outline: 3px solid #f9a94a;
  outline-offset: 3px;
}

.cta-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Abstract analytics visual */
.analytics-visual {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
}

.visual-window {
  width: 92%;
  overflow: hidden;
  background: var(--white);
  border: 9px solid #15233a;
  border-bottom-width: 20px;
  border-radius: 14px 14px 8px 8px;
  box-shadow: 0 25px 45px rgba(23, 32, 51, 0.22);
  transform: perspective(800px) rotateY(-4deg);
}

.visual-toolbar {
  display: flex;
  align-items: center;
  height: 36px;
  gap: 6px;
  padding: 0 13px;
  background: #f2f6fb;
}

.visual-toolbar i {
  width: 7px;
  aspect-ratio: 1 / 1;
  background: #b7c9df;
  border-radius: 50%;
}

.visual-body {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 14px;
  padding: 22px;
  background: #fafcff;
}

.line-chart,
.donut-chart,
.mini-bars,
.data-lines {
  position: relative;
  min-height: 145px;
  background: var(--white);
  border: 1px solid #e7eef8;
  border-radius: 6px;
}

.line-chart {
  background-image: linear-gradient(#edf3fa 1px, transparent 1px), linear-gradient(90deg, #edf3fa 1px, transparent 1px);
  background-size: 100% 32px, 42px 100%;
}

.line-chart span {
  position: absolute;
  inset: 50px 14px 35px;
  border-top: 4px solid var(--blue-light);
  transform: skewY(-14deg);
  box-shadow: 45px -23px 0 -1px white, 48px -21px 0 -1px var(--blue-light), 94px 3px 0 -1px white, 97px 5px 0 -1px var(--blue-light);
}

.donut-chart {
  display: grid;
  place-items: center;
}

.donut-chart::before,
.floating-pie span {
  content: "";
  width: 82px;
  aspect-ratio: 1 / 1;
  background: conic-gradient(var(--blue) 0 42%, #62a5ff 42% 71%, #d5e7ff 71%);
  border-radius: 50%;
  mask: radial-gradient(circle, transparent 0 43%, #000 45%);
}

.mini-bars {
  display: flex;
  min-height: 85px;
  align-items: end;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}

.mini-bars i {
  width: 16px;
  background: var(--blue);
  border-radius: 3px 3px 0 0;
}

.mini-bars i:nth-child(1) { height: 36%; }
.mini-bars i:nth-child(2) { height: 62%; }
.mini-bars i:nth-child(3) { height: 47%; }
.mini-bars i:nth-child(4) { height: 78%; }
.mini-bars i:nth-child(5) { height: 55%; }

.data-lines {
  min-height: 85px;
  padding: 18px;
}

.data-lines i {
  display: block;
  height: 9px;
  margin: 8px 0;
  background: linear-gradient(90deg, var(--blue) 64%, #e9f1fb 64%);
}

.floating-card {
  position: absolute;
  display: grid;
  width: 118px;
  height: 108px;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e4eefb;
  border-radius: 14px;
  box-shadow: var(--shadow-strong);
}

.floating-pie {
  left: -3%;
  bottom: 25px;
}

.floating-pie span {
  width: 64px;
  mask: none;
}

.floating-bars {
  right: -3%;
  top: 18px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  padding: 25px;
}

.floating-bars i {
  width: 13px;
  background: var(--blue);
  border-radius: 2px 2px 0 0;
}

.floating-bars i:nth-child(1) { height: 35%; }
.floating-bars i:nth-child(2) { height: 75%; }
.floating-bars i:nth-child(3) { height: 55%; }

/* Sections */
.section {
  padding: 88px 0;
}

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

.section-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.35;
}

.card-grid {
  display: grid;
  align-items: stretch;
  gap: 24px;
}

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

.card,
.reason-item {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 30px 24px 26px;
  text-align: center;
}

.card h3,
.reason-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.6;
}

.problem-grid .card {
  min-height: 244px;
}

.learning-grid {
  padding-top: 18px;
}

.numbered-card {
  padding-top: 34px;
}

.card-number {
  position: absolute;
  z-index: 2;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* CSS icon drawings */
.icon-screen::before {
  width: 40px;
  height: 29px;
  border: 3px solid currentColor;
  border-radius: 5px;
  transform: translate(-50%, -56%);
}

.icon-screen::after {
  width: 28px;
  height: 8px;
  border-bottom: 3px solid currentColor;
  transform: translate(-50%, 13px);
}

.icon-chart::before {
  width: 42px;
  height: 38px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  background: repeating-linear-gradient(90deg, transparent 0 7px, currentColor 7px 12px, transparent 12px 16px);
  transform: translate(-50%, -50%);
}

.icon-chart::after {
  width: 37px;
  border-top: 3px solid #79adf1;
  transform: translate(-43%, -4px) rotate(-22deg);
}

.icon-user::before {
  width: 18px;
  aspect-ratio: 1 / 1;
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -24px);
}

.icon-user::after {
  width: 39px;
  height: 24px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 24px 24px 4px 4px;
  transform: translate(-50%, 4px);
}

.icon-talk::before {
  width: 38px;
  height: 27px;
  border: 3px solid currentColor;
  border-radius: 7px;
  transform: translate(-57%, -58%);
}

.icon-talk::after {
  width: 26px;
  height: 20px;
  border: 3px solid #79adf1;
  border-radius: 6px;
  transform: translate(0, 2px);
}

.icon-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.icon-bars i {
  width: 8px;
  background: transparent;
  border: 2px solid currentColor;
  border-bottom-width: 3px;
}

.icon-bars i:nth-child(1) { height: 20px; }
.icon-bars i:nth-child(2) { height: 34px; }
.icon-bars i:nth-child(3) { height: 44px; }

.icon-people::before {
  width: 15px;
  aspect-ratio: 1 / 1;
  background: var(--blue-pale);
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -21px);
  box-shadow: -19px 7px 0 -2px var(--blue-pale), -19px 7px 0 1px currentColor, 19px 7px 0 -2px var(--blue-pale), 19px 7px 0 1px currentColor;
}

.icon-people::after {
  width: 28px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 18px 18px 4px 4px;
  transform: translate(-50%, 5px);
  box-shadow: -20px 4px 0 -2px var(--blue-pale), -20px 4px 0 1px #79adf1, 20px 4px 0 -2px var(--blue-pale), 20px 4px 0 1px #79adf1;
}

.icon-search::before {
  width: 34px;
  aspect-ratio: 1 / 1;
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: translate(-62%, -62%);
}

.icon-search::after {
  width: 22px;
  border-top: 4px solid currentColor;
  border-radius: 2px;
  transform: translate(3px, 16px) rotate(45deg);
}

.icon-bulb::before {
  width: 34px;
  height: 38px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 42% 42%;
  transform: translate(-50%, -62%);
}

.icon-bulb::after {
  width: 18px;
  height: 9px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(-50%, 18px);
}

.reasons {
  background: linear-gradient(180deg, #f5f9ff, #eaf3ff);
}

.reason-item {
  min-height: 244px;
  background: rgba(255, 255, 255, 0.82);
}

.icon-book::before {
  width: 42px;
  height: 36px;
  border: 3px solid currentColor;
  border-radius: 4px 9px 4px 4px;
  transform: translate(-50%, -50%);
}

.icon-book::after {
  width: 3px;
  height: 30px;
  background: currentColor;
  transform: translate(-50%, -50%);
  box-shadow: -9px 5px 0 -1px #79adf1, 9px 5px 0 -1px #79adf1;
}

.icon-work::before {
  width: 42px;
  height: 29px;
  border: 3px solid currentColor;
  border-radius: 5px;
  transform: translate(-50%, -58%);
}

.icon-work::after {
  width: 50px;
  height: 8px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 7px 7px;
  transform: translate(-50%, 14px);
}

.icon-growth::before {
  width: 40px;
  height: 36px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  background: repeating-linear-gradient(90deg, transparent 0 7px, #79adf1 7px 12px, transparent 12px 15px);
  transform: translate(-50%, -50%);
}

.icon-growth::after {
  width: 38px;
  height: 20px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translate(-42%, -10px) skewY(-24deg);
}

.icon-consult::before {
  width: 40px;
  height: 27px;
  border: 3px solid currentColor;
  border-radius: 7px;
  transform: translate(-58%, -60%);
}

.icon-consult::after {
  width: 28px;
  height: 21px;
  border: 3px solid #79adf1;
  border-radius: 7px;
  transform: translate(-3px, 7px);
}

/* Recommendation */
.recommend-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(230px, 0.45fr);
  align-items: center;
  gap: 56px;
}

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

.check-list li {
  position: relative;
  min-height: 27px;
  padding-left: 40px;
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  aspect-ratio: 1 / 1;
  background: var(--blue);
  border-radius: 50%;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.person-illustration {
  position: relative;
  width: 230px;
  height: 230px;
  margin: auto;
  background: var(--blue-pale);
  border-radius: 50%;
}

.person-head {
  position: absolute;
  top: 35px;
  left: 84px;
  width: 66px;
  height: 78px;
  background: #f6cba9;
  border: 4px solid var(--navy);
  border-radius: 50% 50% 45% 45%;
}

.person-head::before {
  content: "";
  position: absolute;
  inset: -7px -4px 40px;
  background: var(--navy);
  border-radius: 50% 50% 30% 30%;
}

.person-body {
  position: absolute;
  left: 42px;
  bottom: 0;
  width: 150px;
  height: 115px;
  background: var(--white);
  border: 4px solid var(--blue);
  border-radius: 70px 70px 10px 10px;
}

.person-hand {
  position: absolute;
  right: 14px;
  top: 38px;
  display: grid;
  width: 56px;
  aspect-ratio: 1 / 1;
  place-items: center;
  background: var(--blue);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.person-hand::before {
  content: "";
  width: 20px;
  height: 11px;
  border-left: 4px solid var(--white);
  border-bottom: 4px solid var(--white);
  transform: translateY(-3px) rotate(-45deg);
}

/* Speaker */
.speaker-card {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: center;
  gap: 52px;
  padding: 34px;
}

.speaker-photo {
  position: relative;
  display: flex;
  min-height: 280px;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(140deg, #ffffff, #d9eaff);
  border-radius: 10px;
  text-align: center;
}

.speaker-photo span {
  position: absolute;
  top: 35px;
  width: 82px;
  aspect-ratio: 1 / 1;
  background: #aeb8c4;
  border-radius: 50%;
}

.speaker-photo i {
  position: absolute;
  bottom: 40px;
  width: 180px;
  height: 130px;
  background: #aeb8c4;
  border-radius: 90px 90px 0 0;
}

.speaker-photo p {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  padding: 4px 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 5px;
  font-weight: 700;
  line-height: 1.5;
}

.speaker-profile {
  margin: 0;
}

.speaker-profile > div {
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.speaker-profile dt,
.speaker-profile dd {
  padding: 10px 0;
}

.speaker-profile dt {
  color: var(--navy);
  font-weight: 700;
}

.speaker-profile dd {
  margin: 0;
}

/* Event */
.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 54px;
}

.event-table {
  overflow: hidden;
  margin: 0;
  box-shadow: none;
}

.event-table > div {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 54px;
  align-items: stretch;
}

.event-table > div + div {
  border-top: 1px solid var(--border);
}

.event-table dt,
.event-table dd {
  display: flex;
  align-items: center;
  padding: 12px 20px;
}

.event-table dt {
  color: var(--navy);
  background: var(--blue-pale);
  font-weight: 700;
}

.event-table dd {
  margin: 0;
}

.event-illustration {
  position: relative;
  height: 240px;
}

.calendar {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 0;
  display: grid;
  width: 145px;
  height: 150px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 5px solid var(--blue);
  border-radius: 10px;
}

.calendar::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  right: 18px;
  height: 4px;
  background: currentColor;
  box-shadow: 0 -14px 0 -1px var(--white), -23px -14px 0 -1px currentColor, 23px -14px 0 -1px currentColor;
}

.calendar i {
  display: grid;
  width: 100%;
  height: 90px;
  place-items: center;
  padding-top: 20px;
  color: var(--navy);
  font-size: 14px;
  font-style: normal;
}

.monitor {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 200px;
  height: 130px;
  padding: 9px;
  background: var(--navy);
  border-radius: 10px 10px 2px 2px;
}

.monitor::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 90px;
  border-bottom: 8px solid var(--navy);
  transform: translateX(-50%);
}

.monitor i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 50%, #eaf3ff 50%);
}

/* FAQ */
.faq-container {
  max-width: 1000px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(18, 100, 216, 0.07);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  color: var(--navy);
  background: var(--white);
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.faq-question > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.faq-question i,
.faq-answer i {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  aspect-ratio: 1 / 1;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.faq-question b {
  position: relative;
  display: grid;
  flex: 0 0 26px;
  width: 26px;
  aspect-ratio: 1 / 1;
  place-items: center;
}

.faq-question b::before,
.faq-question b::after {
  content: "";
  position: absolute;
  width: 16px;
  border-top: 2px solid var(--blue);
  transition: transform 0.2s;
}

.faq-question b::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question b::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.faq-answer p > span {
  min-width: 0;
}

.faq-answer i {
  color: var(--blue);
  background: var(--blue-pale);
}

/* Final CTA */
.final-cta {
  padding: 42px 0;
  background: var(--white);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  min-height: 330px;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 45px 60px;
  background: linear-gradient(120deg, #eaf3ff, #f7fbff);
  border: 1px solid #deebfa;
  border-radius: 16px;
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.final-cta h2 {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.55;
}

.final-cta-line {
  display: block;
  color: inherit;
}

.final-cta-line .keep-together {
  color: inherit;
}

.cta-visual {
  position: relative;
  height: 230px;
}

.cta-person {
  position: absolute;
  top: 15px;
  left: 80px;
  width: 90px;
  aspect-ratio: 1 / 1;
  background: #f4c7a5;
  border: 4px solid var(--navy);
  border-radius: 50%;
}

.cta-person::after {
  content: "";
  position: absolute;
  top: 74px;
  left: -50px;
  width: 190px;
  height: 130px;
  background: var(--white);
  border: 4px solid var(--blue);
  border-radius: 95px 95px 0 0;
}

.cta-laptop {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 185px;
  height: 110px;
  background: #e2e9f2;
  border: 6px solid #a4b5c9;
  border-radius: 8px;
}

.cta-laptop::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px;
  height: 15px;
  background: #b4c9e7;
  transform: translate(-50%, -50%) skew(-20deg);
}

.cta-chart {
  position: absolute;
  z-index: 3;
  right: -20px;
  bottom: 3px;
  width: 54px;
  height: 54px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-chart::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 30px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 6px, transparent 6px 10px);
  clip-path: polygon(0 65%, 28% 44%, 55% 53%, 79% 13%, 100% 0, 100% 100%, 0 100%);
}

.site-footer {
  padding: 26px 0;
  color: var(--muted);
  background: var(--white);
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    padding: 64px 0 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(43px, 6.2vw, 52px);
  }

  .analytics-visual {
    width: min(100%, 620px);
    min-height: 380px;
    margin-inline: auto;
  }

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

  .card,
  .reason-item {
    min-height: 226px;
  }

  .speaker-card {
    grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
    gap: 32px;
    padding: 28px;
  }

  .speaker-profile > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .event-illustration {
    width: 300px;
    margin: auto;
  }

  .final-cta-inner {
    grid-template-columns: minmax(0, 1fr) 210px;
    padding-inline: 40px;
  }

  .final-cta h2 {
    font-size: 27px;
  }

  .final-cta-line {
    display: inline;
  }

  .final-cta-line + .final-cta-line::before {
    content: " ";
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 1.75;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .site-header {
    height: 60px;
  }

  .header-inner {
    justify-content: center;
  }

  .header-note {
    display: none;
  }

  .site-logo {
    font-size: 14px;
  }

  .hero {
    min-height: 0;
    padding: 40px 0 64px;
    background: linear-gradient(160deg, #ffffff 0 64%, #eef6ff 64% 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-content {
    max-width: none;
  }

  .eyebrow {
    margin-bottom: 11px;
  }

  .hero-kicker {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 36px);
    line-height: 1.35;
    letter-spacing: -0.045em;
  }

  .hero-line {
    width: auto;
  }

  .hero-lead {
    margin-top: 18px;
  }

  .hero-info {
    margin-top: 24px;
  }

  .hero-info > div {
    min-width: 0;
    min-height: 86px;
    padding: 12px 11px;
  }

  .hero-info dt {
    gap: 7px;
    font-size: 12px;
  }

  .hero-info dd {
    margin-left: 35px;
    white-space: nowrap;
  }

  .info-icon {
    flex-basis: 28px;
    width: 28px;
  }

  .cta-button {
    width: 100%;
    min-height: 62px;
    padding-inline: 50px;
    font-size: 18px;
  }

  .cta-arrow {
    right: 23px;
  }

  .cta-note {
    text-align: center;
  }

  .analytics-visual {
    width: 100%;
    min-height: 270px;
  }

  .visual-window {
    width: 88%;
    border-width: 6px;
    border-bottom-width: 13px;
  }

  .visual-toolbar {
    height: 25px;
  }

  .visual-body {
    gap: 7px;
    padding: 10px;
  }

  .line-chart,
  .donut-chart {
    min-height: 95px;
  }

  .line-chart span {
    inset: 35px 9px 24px;
  }

  .donut-chart::before {
    width: 52px;
  }

  .mini-bars,
  .data-lines {
    min-height: 58px;
    padding: 10px;
  }

  .mini-bars {
    gap: 6px;
  }

  .mini-bars i {
    width: 8px;
  }

  .floating-card {
    width: 76px;
    height: 70px;
  }

  .floating-pie {
    left: 0;
    bottom: 6px;
  }

  .floating-pie span {
    width: 42px;
  }

  .floating-bars {
    right: 0;
    top: 8px;
    gap: 4px;
    padding: 16px;
  }

  .floating-bars i {
    width: 8px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
  }

  .section-heading h2 {
    min-width: 0;
    font-size: 25px;
    line-height: 1.4;
  }

  .number-badge--section {
    width: 34px;
    border-radius: 7px;
    font-size: 13px;
  }

  .number-badge--card {
    width: 38px;
    border-width: 2px;
  }

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

  .card-grid {
    gap: 14px;
  }

  .card,
  .reason-item {
    display: grid;
    min-height: 112px;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    padding: 18px;
    text-align: left;
  }

  .problem-grid .card {
    min-height: 112px;
  }

  .card h3,
  .reason-item h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.62;
  }

  .icon-frame {
    width: 62px;
    margin: 0;
    border-radius: 15px;
    transform: scale(0.92);
  }

  .learning-grid {
    padding-top: 0;
  }

  .numbered-card {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 18px;
  }

  .numbered-card .card-number {
    position: static;
    grid-column: 1;
    grid-row: 1;
    transform: none;
  }

  .numbered-card .icon-frame {
    display: none;
  }

  .numbered-card h3 {
    grid-column: 2;
    grid-row: 1;
  }

  .reason-item {
    grid-template-columns: 62px minmax(0, 1fr);
    background: var(--white);
  }

  .recommend-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .check-list {
    gap: 15px;
  }

  .check-list li {
    padding-left: 38px;
  }

  .person-illustration {
    width: 190px;
    height: 190px;
  }

  .person-head {
    left: 70px;
    top: 28px;
    width: 56px;
    height: 67px;
  }

  .person-body {
    left: 35px;
    width: 125px;
    height: 95px;
  }

  .person-hand {
    width: 48px;
  }

  .speaker-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }

  .speaker-photo {
    min-height: 240px;
  }

  .speaker-profile > div {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 10px 0;
  }

  .speaker-profile dt,
  .speaker-profile dd {
    padding: 0;
  }

  .event-layout {
    gap: 30px;
  }

  .event-table > div {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .event-table > div + div {
    border-top: 0;
  }

  .event-table dt,
  .event-table dd {
    min-height: 48px;
    padding: 10px 14px;
    font-size: 16px;
  }

  .event-table dt {
    border-top: 1px solid var(--border);
  }

  .event-table > div:first-child dt {
    border-top: 0;
  }

  .event-illustration {
    width: 280px;
    margin-bottom: -20px;
    transform: scale(0.9);
    transform-origin: center top;
  }

  .faq-question {
    min-height: 64px;
    gap: 12px;
    padding: 14px 16px;
    line-height: 1.62;
  }

  .faq-question > span {
    min-width: 0;
    align-items: center;
    gap: 10px;
  }

  .faq-question i,
  .faq-answer i {
    width: 28px;
    font-size: 13px;
  }

  .faq-question b {
    flex-basis: 24px;
    width: 24px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  .faq-answer p {
    gap: 10px;
    padding-top: 16px;
    line-height: 1.75;
  }

  .final-cta {
    padding: 24px 0;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 35px 20px 28px;
  }

  .final-cta h2 {
    font-size: 22px;
    line-height: 1.6;
  }

  .final-cta-line {
    display: inline;
  }

  .final-cta-line + .final-cta-line::before {
    content: " ";
  }

  .cta-visual {
    width: 250px;
    height: 190px;
    margin: auto;
    transform: scale(0.88);
    transform-origin: center;
  }

  .site-footer {
    padding: 20px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
