:root {
  --main: #2563c9;
  --main-dark: #11244a;
  --sub: #e5533b;
  --accent: #f5c518;
  --paper: #f8fbff;
  --paper-2: #fffbed;
  --ink: #16243b;
  --muted: #6b7689;
  --line: rgba(37, 99, 201, .16);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 36, 74, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.85;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  background:
    radial-gradient(circle at 8% 12%, rgba(242, 184, 75, .18), transparent 28rem),
    radial-gradient(circle at 88% 5%, rgba(11, 143, 134, .13), transparent 24rem),
    var(--paper);
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 59, 93, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 59, 93, .055) 1px, transparent 1px);
  background-size: 44px 44px;
  mix-blend-mode: multiply;
}

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

.wide {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 80;
  pointer-events: none;
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(8, 38, 59, .13);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--main);
  font-weight: 900;
  line-height: 1.15;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-size: 1.15rem;
  letter-spacing: .02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--main-dark);
  font-size: .88rem;
  font-weight: 800;
}

.nav .menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav .menu > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--sub);
  transition: transform .22s ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--main);
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--sub);
}

.btn-ghost {
  background: rgba(255, 255, 255, .74);
  color: var(--main);
  border-color: var(--line);
}

.btn-ghost:hover {
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  color: var(--main-dark);
}

.btn-accent:hover {
  background: #ffd06d;
  color: var(--main-dark);
}

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

.section {
  position: relative;
  padding: 92px 0;
}

.section-tight {
  padding: 66px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--sub);
  font-size: .78rem;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

.h2 {
  margin: 0;
  color: var(--main-dark);
  font-size: 2.55rem;
  line-height: 1.28;
  font-weight: 900;
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 2;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(260px, .62fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  padding: 118px 0 76px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fffdf6 0%, #f5f8f4 48%, #eaf5f1 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 248, 245, .96) 0%, rgba(247, 248, 245, .84) 38%, rgba(247, 248, 245, .18) 66%),
    url("../images/fv.jpg") center right / cover no-repeat;
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .72fr);
  gap: 48px;
  align-items: center;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--main);
  font-size: .92rem;
  font-weight: 900;
}

.hero-kicker::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 18px 0 0 var(--sub), 36px 0 0 var(--main);
}

.hero h1 {
  margin: 0;
  color: var(--main-dark);
  font-size: 4.85rem;
  line-height: 1.04;
  font-weight: 900;
}

.hero h1 span {
  display: block;
}

.hero .hero-text {
  margin: 26px 0 0;
  max-width: 580px;
  color: #33424b;
  font-size: 1.13rem;
  line-height: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span,
.mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--main);
  font-size: .78rem;
  font-weight: 800;
}

.hero-panel {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  inset: 38px 0 0 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(8, 38, 59, .16));
  mix-blend-mode: multiply;
}

.signal-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 8px;
  width: 210px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 48px rgba(8, 38, 59, .14);
  backdrop-filter: blur(14px);
}

.signal-card strong {
  color: var(--main-dark);
  font-size: .95rem;
  line-height: 1.5;
}

.signal-card span {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.65;
}

.signal-a {
  top: 6px;
  left: 0;
}

.signal-b {
  right: 0;
  bottom: 44px;
}

.node {
  position: absolute;
  z-index: 4;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(242, 184, 75, .18);
}

.node.one {
  top: 26px;
  right: 96px;
}

.node.two {
  top: 230px;
  left: 20px;
  background: var(--sub);
  box-shadow: 0 0 0 7px rgba(11, 143, 134, .18);
}

.node.three {
  right: 50px;
  top: 350px;
  background: var(--main);
  box-shadow: 0 0 0 7px rgba(18, 59, 93, .14);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(280px, .72fr);
  gap: 56px;
  align-items: center;
}

.huge-line {
  margin: 0;
  color: var(--main-dark);
  font-size: 4.2rem;
  line-height: 1.08;
  font-weight: 900;
}

.huge-line span {
  display: block;
}

.intro-text {
  border-left: 4px solid var(--accent);
  padding-left: 28px;
  color: #34454e;
  font-size: 1.08rem;
}

.intro-text p {
  margin: 0 0 14px;
}

.network-band {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 38, 59, .94), rgba(11, 143, 134, .82)),
    url("../images/section-bg-1.jpg") center / cover no-repeat;
}

.network-band .h2,
.network-band .lead,
.network-band .eyebrow {
  color: #fff;
}

.network-band .eyebrow::before {
  background: var(--accent);
}

.reason-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .9fr);
  gap: 48px;
  align-items: start;
}

.reason-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  overflow: hidden;
}

.reason-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, .08);
}

.reason-row b {
  color: var(--accent);
  font-size: 1.65rem;
  line-height: 1;
}

.reason-row strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.reason-row p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.reason-visual {
  position: sticky;
  top: 116px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, .22);
}

.reason-visual img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.service-tile {
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 16px 52px rgba(18, 59, 93, .08);
}

.service-tile.wide-tile {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 18px;
}

.service-tile img {
  width: 100%;
  height: 100%;
  min-height: 196px;
  object-fit: cover;
  border-radius: 8px;
}

.tile-num {
  color: var(--sub);
  font-size: .78rem;
  font-weight: 900;
}

.service-tile h3 {
  margin: 8px 0 8px;
  color: var(--main-dark);
  font-size: 1.18rem;
  line-height: 1.5;
}

.service-tile p {
  margin: 0;
  color: var(--muted);
}

.image-story {
  background: #fff;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.story-stack {
  position: relative;
  min-height: 620px;
}

.story-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fff;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card.main {
  inset: 0 80px 120px 0;
}

.story-card.sub {
  right: 0;
  bottom: 0;
  width: 54%;
  height: 300px;
}

.story-note {
  position: absolute;
  left: 24px;
  bottom: 34px;
  z-index: 2;
  max-width: 270px;
  padding: 18px;
  border-radius: 8px;
  background: var(--main-dark);
  color: #fff;
  box-shadow: 0 18px 48px rgba(8, 38, 59, .22);
}

.story-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-point {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.story-point b {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--main);
  font-size: 1.3rem;
}

.story-point h3 {
  margin: 0 0 6px;
  color: var(--main-dark);
  font-size: 1.12rem;
}

.story-point p {
  margin: 0;
  color: var(--muted);
}

.numbers {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 248, 245, .96), rgba(247, 248, 245, .9)),
    url("../images/texture-1.jpg") center / cover no-repeat;
}

.number-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.number-box {
  min-height: 196px;
  padding: 28px;
  background: rgba(255, 255, 255, .82);
}

.number-box strong {
  display: block;
  color: var(--main-dark);
  font-size: 3.9rem;
  line-height: 1;
}

.number-box span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.honest-note {
  margin-top: 24px;
  padding: 24px;
  border-left: 4px solid var(--sub);
  background: rgba(255, 255, 255, .78);
  color: #34454e;
}

.message-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.profile-frame {
  position: relative;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.profile-frame img {
  width: 100%;
  border-radius: 8px;
}

.profile-caption {
  margin-top: 16px;
  color: var(--muted);
}

.profile-caption strong {
  display: block;
  color: var(--main-dark);
  font-size: 1.18rem;
}

.message-body {
  color: #34454e;
  font-size: 1.05rem;
}

.message-body p {
  margin: 0 0 16px;
}

.pricing {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 59, 93, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 59, 93, .045) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.c-pricing__head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.c-pricing__head .lead {
  max-width: 650px;
  margin: 20px auto 0;
}

.c-pricing__plans {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-top: 58px;
}

.c-pricing__plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 490px;
  padding: 30px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 52px rgba(8, 38, 59, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.c-pricing__plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 62px rgba(8, 38, 59, .13);
}

.c-pricing__plan.featured {
  z-index: 2;
  border: 2px solid var(--sub);
  background: var(--main-dark);
  color: #fff;
  box-shadow: 0 30px 76px rgba(8, 38, 59, .24);
  transform: translateY(-16px);
}

.c-pricing__plan.featured:hover {
  transform: translateY(-22px);
}

.c-pricing__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  padding: 6px 18px;
  border-radius: 999px;
  background: var(--sub);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
  transform: translateX(-50%);
  box-shadow: 0 12px 26px rgba(11, 143, 134, .26);
}

.c-pricing__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: rgba(18, 59, 93, .08);
  color: var(--main);
}

.c-pricing__icon svg {
  width: 26px;
  height: 26px;
}

.c-pricing__plan.featured .c-pricing__icon {
  background: rgba(242, 184, 75, .16);
  color: var(--accent);
}

.c-pricing__plan--setup .c-pricing__icon {
  background: rgba(11, 143, 134, .1);
  color: var(--sub);
}

.c-pricing__plan h3 {
  margin: 0;
  color: var(--main-dark);
  font-size: 1.42rem;
}

.c-pricing__plan.featured h3 {
  color: #fff;
}

.c-pricing__caption {
  min-height: 3.7em;
  margin: 6px 0 20px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

.c-pricing__plan.featured .c-pricing__caption {
  color: rgba(255, 255, 255, .72);
}

.c-pricing__price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 0 0 8px;
  color: var(--main);
  line-height: 1;
}

.c-pricing__price strong {
  font-size: 3.35rem;
  font-weight: 900;
  letter-spacing: 0;
}

.c-pricing__price small {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.c-pricing__plan.featured .c-pricing__price,
.c-pricing__plan.featured .c-pricing__price small,
.c-pricing__plan.featured .c-pricing__list li::before {
  color: var(--accent);
}

.c-pricing__tax {
  min-height: 1.7em;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: .78rem;
}

.c-pricing__plan.featured .c-pricing__tax {
  color: rgba(255, 255, 255, .62);
}

.c-pricing__list {
  display: grid;
  flex: 1;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.c-pricing__plan.featured .c-pricing__list {
  color: rgba(255, 255, 255, .84);
}

.c-pricing__list li {
  position: relative;
  padding-left: 26px;
  font-size: .92rem;
}

.c-pricing__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: .34em;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(11, 143, 134, .12);
  color: var(--sub);
  font-size: .7rem;
  font-weight: 900;
  line-height: 1;
}

.c-pricing__note {
  min-height: 3.2em;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.65;
}

.c-pricing__plan.featured .c-pricing__note {
  color: rgba(255, 255, 255, .64);
}

.c-pricing__button {
  width: 100%;
  min-height: 48px;
  background: rgba(18, 59, 93, .08);
  color: var(--main);
}

.c-pricing__plan.featured .c-pricing__button {
  background: var(--accent);
  color: var(--main-dark);
}

.c-pricing__button:hover {
  transform: translateY(-2px);
}

.flow {
  background: var(--paper);
}

.flow-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.flow-step {
  display: grid;
  grid-template-columns: 120px minmax(0, .86fr) minmax(250px, .64fr);
  gap: 28px;
  align-items: center;
  min-height: 170px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.flow-step b {
  color: var(--sub);
  font-size: 2.6rem;
  line-height: 1;
}

.flow-step h3 {
  margin: 0;
  color: var(--main-dark);
  font-size: 1.35rem;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--main-dark);
  font-weight: 900;
  list-style: none;
}

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

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-card div {
  padding: 20px;
}

.blog-card span {
  color: var(--sub);
  font-size: .78rem;
  font-weight: 900;
}

.blog-card h3 {
  margin: 8px 0 0;
  color: var(--main-dark);
  font-size: 1.05rem;
  line-height: 1.55;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 38, 59, .96), rgba(11, 143, 134, .88)),
    url("../images/section-bg-3.jpg") center / cover no-repeat;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .42;
}

.final-cta .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.final-cta h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.28;
}

.final-cta p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .86);
}

.site-footer {
  color: #e9f3f3;
  background: var(--main-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(0, 1fr);
  gap: 42px;
  padding: 50px 0 34px;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 900;
}

.footer-brand p {
  margin: 12px 0 0;
  color: rgba(233, 243, 243, .72);
  font-size: .92rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px;
}

.footer-links a {
  display: block;
  padding: 4px 0;
  color: rgba(233, 243, 243, .82);
  font-size: .9rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(233, 243, 243, .62);
  font-size: .82rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 74px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 38, 59, .94), rgba(11, 143, 134, .76)),
    url("../images/section-bg-2.jpg") center / cover no-repeat;
}

.page-hero h1 {
  margin: 0;
  font-size: 3.75rem;
  line-height: 1.15;
}

.page-hero p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 1.08rem;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(300px, .38fr);
  gap: 42px;
  align-items: start;
}

.page-main {
  display: grid;
  gap: 42px;
}

.content-block {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
}

.content-block h2,
.content-block h3 {
  margin: 0 0 14px;
  color: var(--main-dark);
  line-height: 1.45;
}

.content-block p {
  margin: 0 0 14px;
  color: #34454e;
}

.content-block ul,
.content-block ol {
  margin: 14px 0 0;
  padding-left: 1.2em;
  color: #34454e;
}

.content-block li {
  margin: 8px 0;
}

.side-panel {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 14px;
}

.side-panel .content-block {
  padding: 24px;
}

.line-box {
  padding: 28px;
  border: 1px solid rgba(11, 143, 134, .24);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.line-box h2 {
  margin: 0 0 10px;
  color: var(--main-dark);
}

.line-box p {
  margin: 0 0 18px;
  color: var(--muted);
}

.policy-list h2 {
  margin-top: 0;
}

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

  .hero-inner,
  .section-head,
  .split-intro,
  .reason-layout,
  .story-layout,
  .message-layout,
  .page-grid,
  .footer-inner,
  .final-cta .container {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 106px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(247, 248, 245, .97) 0%, rgba(247, 248, 245, .92) 58%, rgba(247, 248, 245, .72) 100%),
      url("../images/fv.jpg") center top / cover no-repeat;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .hero-panel {
    min-height: 430px;
  }

  .hero-photo {
    inset: 0;
  }

  .signal-a {
    top: 16px;
    left: 16px;
  }

  .signal-b {
    right: 16px;
    bottom: 16px;
  }

  .reason-visual,
  .side-panel {
    position: static;
  }

  .reason-visual img {
    height: 420px;
  }

  .service-tile.wide-tile {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .flow-step {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .flow-step p {
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  .container,
  .wide {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    top: 10px;
  }

  .header-inner {
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 8px 8px 8px 12px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    font-size: 1rem;
  }

  .brand small {
    display: none;
  }

  .header-inner .btn {
    min-height: 40px;
    max-width: 142px;
    padding: 9px 10px;
    font-size: .78rem;
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    padding: 96px 0 54px;
  }

  .hero-inner {
    width: calc(100% - 28px);
    gap: 32px;
  }

  .hero h1 {
    font-size: 2.88rem;
  }

  .hero .hero-text {
    font-size: 1rem;
  }

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

  .hero-panel {
    min-height: 380px;
  }

  .signal-card {
    width: 178px;
    padding: 13px;
  }

  .node {
    display: none;
  }

  .h2,
  .final-cta h2 {
    font-size: 2.08rem;
  }

  .huge-line {
    font-size: 3rem;
  }

  .intro-text {
    padding-left: 18px;
  }

  .reason-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-stack {
    min-height: 520px;
  }

  .story-card.main {
    inset: 0 0 160px 0;
  }

  .story-card.sub {
    width: 70%;
    height: 230px;
  }

  .story-note {
    left: 14px;
    bottom: 24px;
  }

  .number-box strong {
    font-size: 3rem;
  }

  .flow-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-step p {
    grid-column: auto;
  }

  .page-hero {
    padding: 118px 0 58px;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }

  .content-block {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Monitor invitation */
.monitor-invite { background: linear-gradient(155deg, #11244a 0%, #1a3975 68%, #234d97 100%); color: #fff; }
.monitor-invite .eyebrow { color: #f5c518; }
.monitor-invite .h2, .monitor-invite .lead { color: #fff; }
.monitor-invite__body { display: grid; gap: 30px; }
.monitor-invite__benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.monitor-invite__benefits article { padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(255,255,255,.08); }
.monitor-invite__benefits b { color: #f5c518; font-family: "Space Grotesk", sans-serif; }
.monitor-invite__benefits h3 { margin: 10px 0; font-size: 1.15rem; }
.monitor-invite__benefits p { margin: 0; color: rgba(255,255,255,.82); font-size: .91rem; line-height: 1.85; }
.monitor-invite__route { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; }
.monitor-invite__step { padding: 26px; border-radius: 20px; background: #fff; color: #16243b; }
.monitor-invite__step span { color: #e5533b; font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.monitor-invite__step strong { display: block; margin: 7px 0; font-size: 1.2rem; }
.monitor-invite__step p { margin: 0 0 14px; color: #52627a; line-height: 1.75; }
.monitor-invite__step a { color: #2563c9; font-weight: 900; }
.monitor-invite__arrow { color: #f5c518; font-size: 1.8rem; font-weight: 900; }
.monitor-invite__note { margin: 0; color: #f5c518; font-weight: 800; text-align: center; }
.column-more { margin-top: 30px; text-align: center; }

/* Column index and articles */
.column-categories { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 32px; }
.column-categories span { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--main-dark); font-size: .8rem; font-weight: 800; }
.column-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.column-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 18px 44px -34px rgba(17,36,74,.5); }
.column-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.column-card__body { padding: 22px; }
.column-card__body span, .article-category { color: #2563c9; font-size: .75rem; font-weight: 900; }
.column-card__body h2 { margin: 8px 0 10px; font-size: 1.15rem; line-height: 1.55; }
.column-card__body p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.75; }
.article-shell { background: #f8fbff; }
.article-header { padding: clamp(70px,10vw,110px) 20px 46px; background: #11244a; color: #fff; }
.article-header__inner { width: min(860px,100%); margin: 0 auto; }
.article-header h1 { margin: 12px 0 18px; color: #fff; font-size: clamp(2rem,5vw,3.4rem); line-height: 1.4; }
.article-header p { margin: 0; color: rgba(255,255,255,.8); font-size: 1rem; line-height: 1.9; }
.article-layout { display: grid; grid-template-columns: minmax(0,760px) minmax(220px,300px); align-items: start; gap: 42px; padding-top: 56px; padding-bottom: 72px; }
.article-main { padding: clamp(24px,5vw,52px); border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.article-main > p { margin: 0 0 1.4em; line-height: 2; }
.article-main h2 { margin: 2.2em 0 .8em; padding-bottom: .55em; border-bottom: 2px solid #e8eef8; font-size: clamp(1.35rem,3vw,1.75rem); }
.article-main a { color: #2563c9; text-decoration: underline; text-underline-offset: 3px; }
.article-side { position: sticky; top: 100px; }
.article-side__box { padding: 24px; border-radius: 20px; background: #11244a; color: #fff; }
.article-side__box h2 { margin: 0 0 10px; font-size: 1.15rem; }
.article-side__box p { color: rgba(255,255,255,.8); font-size: .88rem; line-height: 1.8; }

@media (max-width: 768px) {
  .monitor-invite__benefits, .column-grid { grid-template-columns: 1fr; }
  .monitor-invite__route { grid-template-columns: 1fr; }
  .monitor-invite__arrow { transform: rotate(90deg); text-align: center; }
  .article-layout { grid-template-columns: 1fr; padding-top: 24px; }
  .article-main { border-radius: 16px; }
  .article-side { position: static; }
}

@media (max-width: 900px) {
  .c-pricing__plans {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 48px auto 0;
  }

  .c-pricing__plan {
    min-height: 0;
  }

  .c-pricing__plan.featured,
  .c-pricing__plan.featured:hover {
    order: -1;
    transform: none;
  }

  .c-pricing__caption,
  .c-pricing__note {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .c-pricing__plan {
    padding: 28px 22px 24px;
  }

  .c-pricing__price strong {
    font-size: 2.82rem;
  }
}

/* sample06-inspired editorial theme */
body {
  color: #37445a;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.03 0.18' numOctaves='2' seed='7' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.15 0 0 0 0 0.39 0 0 0 0 0.79 0 0 0 0.025 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 280px;
  background-attachment: fixed;
}

.site-shell {
  background: transparent;
}

.site-shell::before {
  display: none;
}

.h2,
.huge-line,
.service-tile h3,
.story-point h3,
.message-body h2,
.c-pricing__plan h3,
.flow-step h3,
.blog-card h3,
.final-cta h2,
.page-hero h1,
.content-block h2,
.content-block h3,
.line-box h2 {
  font-family: "Shippori Mincho", "Yu Mincho", serif;
}

h1,
h2,
h3,
.lead,
.btn,
summary {
  word-break: auto-phrase;
  text-wrap: balance;
}

.eyebrow,
.tile-num,
.c-pricing__tax {
  font-family: "Space Grotesk", "Zen Kaku Gothic New", sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.site-header {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  z-index: 80;
  padding: 0;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 30px rgba(17, 36, 74, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: auto;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--main) 0 52%, var(--accent) 52% 78%, var(--sub) 78%);
}

.header-inner {
  width: min(1280px, calc(100% - 40px));
  min-height: 78px;
  padding: 10px 0 13px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  color: var(--main-dark);
}

.brand img {
  width: 56px;
  height: 56px;
  mix-blend-mode: multiply;
}

.brand span {
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 1.15rem;
}

.brand small {
  margin-top: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--muted);
}

.nav {
  gap: 4px;
}

.nav a {
  padding: 9px 13px;
  border-radius: 999px;
}

.nav a::after {
  display: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: #eef4fd;
  color: var(--main);
}

.btn {
  min-height: 52px;
  padding: 13px 26px;
  border-width: 2px;
  border-radius: 999px;
}

.btn:hover {
  background: var(--main-dark);
}

.btn-accent {
  background: var(--sub);
  color: #fff;
  box-shadow: 0 14px 30px -16px rgba(229, 83, 59, .7);
}

.btn-accent:hover {
  background: #c8412b;
  color: #fff;
}

.section {
  padding: 108px 0;
}

.section-tight {
  padding: 90px 0;
}

.eyebrow {
  color: var(--main);
  font-size: .73rem;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: var(--accent);
}

.h2 {
  color: var(--ink);
  font-size: 3rem;
  line-height: 1.38;
  font-weight: 700;
}

.lead {
  color: var(--muted);
}

.hero {
  width: 100%;
  min-height: 760px;
  height: calc(100svh - 78px);
  padding: 86px 0 74px;
  background: var(--main-dark);
}

.hero::before {
  z-index: 0;
  background: url("../images/fv.jpg") center right / cover no-repeat;
  transform: scale(1.035);
  animation: sampleHeroZoom 14s ease-out both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(104deg, rgba(10, 26, 57, .96) 0%, rgba(10, 26, 57, .84) 39%, rgba(10, 26, 57, .46) 68%, rgba(10, 26, 57, .18) 100%),
    linear-gradient(0deg, rgba(8, 20, 44, .48), transparent 58%);
}

@keyframes sampleHeroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.035); }
}

.hero-canvas {
  z-index: 2;
  opacity: .46;
  mix-blend-mode: screen;
}

.hero-inner {
  z-index: 3;
  width: min(1320px, calc(100% - 88px));
  display: flex;
  align-items: center;
}

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

.hero-kicker {
  margin-bottom: 16px;
  color: var(--accent);
  font-family: "Space Grotesk", "Zen Kaku Gothic New", sans-serif;
  font-size: .8rem;
  letter-spacing: .16em;
}

.hero-kicker::before {
  width: 30px;
  height: 3px;
  border-radius: 0;
  background: var(--accent);
  box-shadow: none;
}

.hero h1 {
  color: #fff;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 4.75rem;
  line-height: 1.24;
  font-weight: 800;
  text-shadow: 0 8px 44px rgba(0, 0, 0, .28);
}

.hero h1 span:last-child {
  color: var(--accent);
}

.hero .hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.08rem;
}

.hero-actions .btn-ghost {
  border-color: rgba(255, 255, 255, .56);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.hero-actions .btn-ghost:hover {
  border-color: #fff;
  background: #fff;
  color: var(--main-dark);
}

.hero-proof {
  max-width: 680px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(7, 19, 42, .46);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-proof span,
.mini-chip {
  min-height: auto;
  padding: 0 12px 0 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .22);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .88);
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-panel {
  display: none;
}

.split-intro {
  position: relative;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: 72px;
}

.split-intro::before {
  content: "Question";
  position: absolute;
  top: -78px;
  left: -10px;
  z-index: -1;
  color: #eef1f8;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 700;
  line-height: 1;
}

.huge-line {
  color: var(--ink);
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 4.45rem;
  font-weight: 700;
}

.huge-line span:last-child {
  color: var(--sub);
}

.intro-text {
  border-left: 3px solid var(--main);
  color: #37445a;
}

.network-band {
  background:
    linear-gradient(108deg, rgba(17, 36, 74, .97), rgba(23, 58, 110, .9)),
    url("../images/section-bg-1.jpg") center / cover no-repeat;
}

.reason-list {
  border-color: rgba(255, 255, 255, .2);
  border-radius: 4px;
}

.reason-row {
  background: rgba(255, 255, 255, .06);
}

.reason-row + .reason-row {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.reason-row b {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
}

.reason-visual {
  border-radius: 4px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.reason-visual img {
  filter: saturate(.93) contrast(1.02);
}

.services-grid {
  gap: 20px;
}

.service-tile {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px -30px rgba(22, 36, 59, .45);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.service-tile::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--sub);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.service-tile:hover {
  transform: translateY(-7px);
  border-color: rgba(229, 83, 59, .42);
  box-shadow: 0 26px 55px -30px rgba(22, 36, 59, .5);
}

.service-tile:hover::after {
  transform: scaleX(1);
}

.tile-num {
  color: var(--sub);
}

.service-tile h3 {
  color: var(--ink);
  font-size: 1.3rem;
}

.service-tile img {
  border-radius: 4px;
  filter: saturate(.93) contrast(1.02);
}

.image-story {
  background: #f8fbff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-card {
  border-radius: 5px;
}

.story-card img,
.profile-frame img,
.blog-card img {
  filter: saturate(.93) contrast(1.02);
}

.story-note {
  border-radius: 4px;
  border-left: 5px solid var(--accent);
}

.story-point {
  border-bottom-color: var(--line);
}

.story-point b {
  color: var(--main);
  font-family: "Space Grotesk", sans-serif;
}

.numbers {
  background: #eef4fd;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.number-strip {
  border-color: rgba(37, 99, 201, .22);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 24px 56px -38px rgba(17, 36, 74, .46);
}

.number-box {
  border-color: rgba(37, 99, 201, .16);
}

.number-box strong {
  color: var(--main);
  font-family: "Shippori Mincho", "Yu Mincho", serif;
}

.number-box:nth-child(2) strong {
  color: var(--sub);
}

.number-box:nth-child(3) strong {
  color: #d9a800;
}

.honest-note {
  border-left-color: var(--main);
  background: rgba(255, 255, 255, .82);
}

.profile-frame {
  border-radius: 5px;
  border: 1px solid var(--line);
  box-shadow: 0 22px 52px -34px rgba(17, 36, 74, .45);
}

.profile-frame img {
  border-radius: 3px;
}

.pricing {
  background: #fff;
}

.pricing::before {
  background-image:
    linear-gradient(rgba(37, 99, 201, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 201, .045) 1px, transparent 1px);
}

.c-pricing__plan {
  border-radius: 6px;
  box-shadow: 0 20px 48px -34px rgba(17, 36, 74, .52);
}

.c-pricing__plan.featured {
  border-color: var(--main);
  background: var(--main-dark);
  box-shadow: 0 34px 72px -28px rgba(17, 36, 74, .56);
}

.c-pricing__badge {
  background: var(--sub);
  box-shadow: 0 12px 28px rgba(229, 83, 59, .28);
}

.c-pricing__icon {
  border-radius: 6px;
  background: #eef4fd;
  color: var(--main);
}

.c-pricing__plan.featured .c-pricing__icon {
  background: rgba(245, 197, 24, .16);
}

.c-pricing__plan--setup .c-pricing__icon {
  background: rgba(229, 83, 59, .1);
  color: var(--sub);
}

.c-pricing__list li::before {
  background: rgba(37, 99, 201, .11);
  color: var(--main);
}

.c-pricing__plan.featured .c-pricing__button {
  background: var(--sub);
  color: #fff;
}

.c-pricing__button {
  background: #eef4fd;
  color: var(--main);
}

.flow {
  background: #f8fbff;
}

.flow-list {
  border-top-color: rgba(37, 99, 201, .2);
}

.flow-step {
  border-bottom-color: rgba(37, 99, 201, .18);
}

.flow-step b {
  color: var(--main);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

#faq {
  overflow: hidden;
  background: var(--main-dark);
}

#faq::before {
  content: "FAQ";
  position: absolute;
  top: -30px;
  right: 4vw;
  color: rgba(255, 255, 255, .055);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(7rem, 20vw, 17rem);
  font-weight: 700;
  line-height: 1;
}

#faq .h2,
#faq .lead,
#faq .eyebrow {
  color: #fff;
}

.faq-list {
  position: relative;
  z-index: 1;
}

.faq-item {
  border-color: rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: #fff;
}

.faq-item summary {
  color: var(--ink);
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--main);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 20px 46px -36px rgba(17, 36, 74, .5);
  transition: transform .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px -34px rgba(17, 36, 74, .5);
}

.blog-card span {
  color: var(--sub);
}

.final-cta {
  overflow: hidden;
  background: #eef4fd;
  color: var(--ink);
}

.final-cta::before {
  inset: auto -20px -36px auto;
  width: 220px;
  height: 220px;
  border-radius: 0;
  background-image: radial-gradient(var(--main) 1.6px, transparent 1.6px);
  background-size: 18px 18px;
  opacity: .34;
}

.final-cta h2 {
  color: var(--ink);
}

.final-cta p {
  color: var(--muted);
}

.site-footer {
  border-top: 4px solid var(--accent);
  background: var(--main-dark);
  color: rgba(255, 255, 255, .78);
}

.footer-brand {
  color: #fff;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
}

.footer-brand p,
.footer-bottom {
  color: rgba(255, 255, 255, .62);
}

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

.page-hero {
  padding: 120px 0 80px;
  background:
    linear-gradient(105deg, rgba(17, 36, 74, .96), rgba(23, 58, 110, .74)),
    url("../images/section-bg-2.jpg") center / cover no-repeat;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
  color: #fff;
}

.page-hero .eyebrow::before {
  background: var(--accent);
}

.page-hero h1 {
  font-size: 3.45rem;
}

.content-block {
  border-color: var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 18px 46px -38px rgba(17, 36, 74, .48);
}

.content-block h2,
.content-block h3,
.line-box h2 {
  color: var(--ink);
}

.content-block h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 12px;
  background: var(--accent);
}

.line-box {
  border-color: rgba(229, 83, 59, .24);
  border-radius: 6px;
  background: #fffbed;
  box-shadow: 0 20px 50px -36px rgba(17, 36, 74, .42);
}

@media (max-width: 980px) {
  .hero {
    min-height: 700px;
    height: auto;
    padding: 104px 0 82px;
  }

  .hero::before {
    background: url("../images/fv.jpg") 64% center / cover no-repeat;
  }

  .hero::after {
    background: linear-gradient(105deg, rgba(10, 26, 57, .97) 0%, rgba(10, 26, 57, .88) 58%, rgba(10, 26, 57, .48) 100%);
  }

  .hero-inner {
    width: min(100% - 48px, 1320px);
  }

  .hero h1 {
    font-size: 3.7rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 0;
  }

  .header-inner {
    width: calc(100% - 24px);
    min-height: 68px;
    padding: 8px 0 11px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .header-inner .btn {
    min-height: 40px;
    max-width: 146px;
    padding: 8px 12px;
  }

  .section {
    padding: 76px 0;
  }

  body {
    background-attachment: scroll;
  }

  .hero {
    min-height: 660px;
    padding: 86px 0 66px;
  }

  .hero::before {
    background-position: 70% center;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(10, 26, 57, .95) 0%, rgba(10, 26, 57, .82) 64%, rgba(10, 26, 57, .72) 100%);
  }

  .hero-inner {
    width: calc(100% - 30px);
  }

  .hero h1 {
    font-size: 2.62rem;
    line-height: 1.34;
  }

  .hero .hero-text {
    font-size: .98rem;
    line-height: 1.85;
  }

  .hero-proof {
    gap: 8px 12px;
    padding: 12px 14px;
  }

  .hero-proof span {
    border-right: 0;
  }

  .h2,
  .final-cta h2 {
    font-size: 2.15rem;
  }

  .huge-line {
    font-size: 2.8rem;
  }

  .split-intro::before {
    top: -42px;
    left: 0;
  }

  .page-hero {
    padding: 90px 0 64px;
  }

  .page-hero h1 {
    font-size: 2.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
  }

  .service-tile,
  .blog-card {
    transition: none;
  }
}

@media (max-width: 768px) {
  .brand span {
    font-size: 1rem;
  }
}

/* Manga reader */
.manga-teaser {
  overflow: hidden;
  background: linear-gradient(145deg, #fffaf0 0%, #fff 48%, #eef5ff 100%);
}

.manga-teaser__inner {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 7vw, 88px);
}

.manga-teaser__cover {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(17, 36, 74, .12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 60px -34px rgba(17, 36, 74, .5);
  transform: rotate(-1.5deg);
}

.manga-teaser__cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.manga-teaser__copy .lead { margin: 20px 0 28px; }

.manga-reader-page { background: #f3eee5; }

.manga-hero {
  padding: clamp(70px, 10vw, 120px) 20px 42px;
  background: linear-gradient(160deg, #11244a 0%, #1c3972 100%);
  color: #fff;
  text-align: center;
}

.manga-hero .eyebrow { color: #f5c518; }
.manga-hero h1 { margin: 14px 0 18px; font-size: clamp(2rem, 5vw, 3.8rem); }
.manga-hero p { max-width: 680px; margin: 0 auto; line-height: 1.9; }

.manga-toolbar {
  position: sticky;
  z-index: 20;
  top: 72px;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(17, 36, 74, .12);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
}

.manga-toolbar a {
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf3ff;
  color: #11244a;
  font-size: .78rem;
  font-weight: 800;
}

.manga-reader {
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 36px 12px 72px;
}

.manga-chapter {
  scroll-margin-top: 150px;
  margin: 32px 0 18px;
  color: #11244a;
  text-align: center;
}

.manga-chapter:first-child { margin-top: 0; }
.manga-chapter span { display: block; color: #e5533b; font-size: .7rem; font-weight: 900; letter-spacing: .18em; }
.manga-chapter h2 { margin: 6px 0 0; font-size: clamp(1.25rem, 4vw, 1.75rem); }

.manga-page {
  margin: 0 0 14px;
  content-visibility: auto;
  contain-intrinsic-size: 680px 1208px;
}

.manga-page img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(41, 31, 20, .14);
}

.manga-end {
  padding: 56px 20px 72px;
  background: #fff;
  text-align: center;
}

.manga-end h2 { margin: 0 0 14px; }
.manga-end p { margin: 0 auto 26px; }

@media (max-width: 768px) {
  .manga-teaser__inner { grid-template-columns: 1fr; }
  .manga-teaser__cover { width: min(88vw, 430px); margin: 0 auto; }
  .manga-teaser__copy { text-align: center; }
  .manga-toolbar { top: 62px; overflow-x: auto; justify-content: flex-start; }
  .manga-toolbar a { flex: none; }
  .manga-reader { padding-right: 0; padding-left: 0; }
  .manga-page { margin-bottom: 8px; }
  .manga-page img { border-radius: 0; box-shadow: none; }
}

/* Smartphone menu: spmenu-02 / bottom sheet */
.sp-menu-toggle,
.sp-menu-backdrop,
.sp-menu-sheet {
  display: none;
}

@media (max-width: 980px) {
  body.is-sp-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .split-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .intro-text {
    min-width: 0;
  }

  .header-inner > .btn {
    display: none;
  }

  .sp-menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    min-width: 78px;
    min-height: 42px;
    padding: 0 16px;
    border: 2px solid var(--main-dark);
    border-radius: 999px;
    background: transparent;
    color: var(--main-dark);
    font-family: "Space Grotesk", sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1;
    cursor: pointer;
  }

  .sp-menu-toggle[aria-expanded="true"] {
    border-color: var(--main-dark);
    background: var(--main-dark);
    color: var(--white);
  }

  .sp-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: block;
    visibility: hidden;
    background: rgba(10, 26, 57, .56);
    opacity: 0;
    pointer-events: none;
    transition: opacity .38s ease, visibility .38s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .sp-menu-sheet {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: block;
    max-height: min(82svh, 720px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0 max(18px, env(safe-area-inset-right)) calc(20px + env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
    border-radius: 28px 28px 0 0;
    background: var(--white);
    box-shadow: 0 -26px 70px rgba(10, 26, 57, .3);
    transform: translate3d(0, 105%, 0);
    visibility: hidden;
    pointer-events: none;
    transition: transform .54s cubic-bezier(.22, 1, .36, 1), visibility .54s ease;
  }

  .is-sp-menu-open .sp-menu-backdrop {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .is-sp-menu-open .sp-menu-sheet {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .sp-menu-sheet__grab {
    width: 44px;
    height: 5px;
    margin: 12px auto 4px;
    border-radius: 999px;
    background: rgba(37, 99, 201, .2);
  }

  .sp-menu-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 7px 4px 14px;
    border-bottom: 1px solid var(--line);
  }

  .sp-menu-sheet__title {
    display: flex;
    align-items: baseline;
    gap: 12px;
    color: var(--main-dark);
  }

  .sp-menu-sheet__title strong {
    font-family: "Shippori Mincho", "Yu Mincho", serif;
    font-size: 1.1rem;
    letter-spacing: .1em;
  }

  .sp-menu-sheet__title small {
    color: var(--sub);
    font-family: "Space Grotesk", sans-serif;
    font-size: .56rem;
    font-weight: 700;
    letter-spacing: .2em;
  }

  .sp-menu-sheet__close {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    flex: none;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    color: var(--main-dark);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
  }

  .sp-menu-sheet__tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px 0 7px;
  }

  .sp-menu-sheet__tile {
    display: flex;
    min-width: 0;
    min-height: 112px;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
    color: var(--main-dark);
  }

  .sp-menu-sheet__tile:active {
    background: #eaf2ff;
  }

  .sp-menu-sheet__tile span {
    color: var(--sub);
    font-family: "Space Grotesk", sans-serif;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .18em;
  }

  .sp-menu-sheet__tile strong {
    font-size: .93rem;
    letter-spacing: .03em;
  }

  .sp-menu-sheet__tile small {
    color: var(--muted);
    font-size: .68rem;
    line-height: 1.55;
  }

  .sp-menu-sheet__rows {
    padding: 6px 2px 11px;
  }

  .sp-menu-sheet__rows a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 10px 5px;
    border-bottom: 1px dashed var(--line);
    color: var(--main-dark);
    font-size: .88rem;
    font-weight: 800;
  }

  .sp-menu-sheet__rows span {
    color: var(--sub);
    font-family: "Space Grotesk", sans-serif;
  }

  .sp-menu-sheet__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 20px;
    border-radius: 14px;
    background: var(--sub);
    box-shadow: 0 14px 28px -16px rgba(229, 83, 59, .85);
    color: var(--white);
    font-size: .94rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-align: center;
  }

  .sp-menu-sheet__note {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: .65rem;
    line-height: 1.55;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .sp-menu-sheet__tile {
    min-height: 104px;
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-menu-backdrop,
  .sp-menu-sheet {
    transition-duration: .01ms;
  }
}

/* Page-specific styles migrated from index.html */

    .hero { width: 100%; }
    .site-shell::before { mix-blend-mode: multiply; }
    .hero h1 { font-size: 4rem; }
    .split-intro--coupon { grid-template-columns: 1fr; }
    .split-intro--coupon .intro-text { width: min(720px, 100%); margin-left: auto; }
    .split-intro--coupon .huge-line { font-size: clamp(3rem, 6.1vw, 4.35rem); }
    @media (max-width: 768px) {
      .hero h1 { font-size: 1.95rem; }
      .split-intro--coupon .huge-line { font-size: 1.55rem; line-height: 1.5; }
    }
  
