:root {
  --ink: #0b1426;
  --ink-2: #10203a;
  --ink-3: #162a48;
  --paper: #f6f2e9;
  --paper-2: #fffdf8;
  --paper-3: #ebe4d8;
  --gold: #c99b4b;
  --gold-light: #f0d49b;
  --orange: #e46635;
  --text: #1a2432;
  --muted: #667080;
  --line: rgba(11, 20, 38, 0.14);
  --white: #fff;
  --shadow: 0 20px 55px rgba(10, 20, 38, 0.12);
  --radius: 22px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: var(--paper);
}
body {
  color: var(--text);
  background: var(--paper);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
.wrap {
  width: min(calc(100% - 44px), var(--wrap));
  margin-inline: auto;
}
.section {
  padding: 112px 0;
  position: relative;
}
.section--compact {
  padding: 78px 0;
}
.section--dark {
  background: var(--ink);
  color: var(--white);
}
.section--white {
  background: var(--paper-2);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}
.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-head--center {
  text-align: center;
  margin-inline: auto;
}
.section-head--center .eyebrow {
  justify-content: center;
}
.section-head--center .eyebrow::after {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}
h1,
h2,
h3 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(38px, 5.1vw, 72px);
  line-height: 1.24;
  font-weight: 600;
}
h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.38;
  font-weight: 600;
}
h3 {
  font-size: 22px;
  line-height: 1.5;
}
.lead {
  color: var(--muted);
  font-size: 17px;
  margin-top: 20px;
}
.section--dark .lead {
  color: rgba(255, 255, 255, 0.62);
}
.accent {
  color: var(--gold);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  background: rgba(9, 19, 38, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition:
    height 0.25s ease,
    background 0.25s ease;
}
.topbar.is-scrolled {
  height: 66px;
  background: rgba(9, 19, 38, 0.96);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  text-decoration: none;
  color: var(--white);
  line-height: 1;
}
.logo strong {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  letter-spacing: 0.18em;
}
.logo span {
  display: block;
  margin-top: 7px;
  color: var(--gold-light);
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: 0.28em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}
.nav a:hover {
  color: var(--white);
}
.topbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(201, 155, 75, 0.24);
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 148px 0 88px;
  background:
    radial-gradient(
      circle at 78% 30%,
      rgba(201, 155, 75, 0.19),
      transparent 31%
    ),
    radial-gradient(
      circle at 62% 110%,
      rgba(228, 102, 53, 0.12),
      transparent 33%
    ),
    linear-gradient(135deg, #081223 0%, #0d1a31 52%, #091326 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(201, 155, 75, 0.14);
  border-radius: 50%;
  right: -190px;
  top: 90px;
  box-shadow:
    0 0 0 90px rgba(201, 155, 75, 0.025),
    0 0 0 180px rgba(201, 155, 75, 0.018);
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: 72px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(240, 212, 155, 0.26);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.035);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 25px;
}
.hero__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 155, 75, 0.12);
}
.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}
.hero__copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  margin-top: 24px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 27px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(201, 155, 75, 0.27);
}
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
}
.btn--dark {
  background: var(--ink);
  color: var(--white);
}
.btn--outline {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}
.btn svg {
  width: 17px;
  height: 17px;
}
.hero__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}
.hero__note svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.mockup {
  position: relative;
  min-height: 520px;
}
.mockup__glow {
  position: absolute;
  inset: 80px 40px 30px;
  background: rgba(201, 155, 75, 0.14);
  filter: blur(48px);
  border-radius: 50%;
}
.dashboard {
  position: absolute;
  right: 0;
  top: 66px;
  width: 88%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(25, 43, 72, 0.96),
    rgba(10, 22, 42, 0.98)
  );
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  transform: rotate(2deg);
}
.dashboard__bar {
  height: 37px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.dashboard__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.dashboard__body {
  padding: 22px;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.metric {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}
.metric small {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.08em;
}
.metric b {
  display: block;
  margin-top: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
}
.metric span {
  display: block;
  color: #80d2a5;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  margin-top: 2px;
}
.chart {
  position: relative;
  height: 150px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.025),
    transparent
  );
}
.chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 36px,
    rgba(255, 255, 255, 0.055) 37px
  );
}
.chart svg {
  position: absolute;
  inset: 18px 16px;
  width: calc(100% - 32px);
  height: calc(100% - 36px);
}
.phone {
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 190px;
  height: 390px;
  z-index: 3;
  padding: 8px;
  border-radius: 34px;
  background: #05080e;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 32px 65px rgba(0, 0, 0, 0.46);
  transform: rotate(-7deg);
}
.phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 11px;
  transform: translateX(-50%);
  width: 66px;
  height: 18px;
  border-radius: 0 0 12px 12px;
  background: #05080e;
  z-index: 2;
}
.phone__screen {
  height: 100%;
  overflow: hidden;
  border-radius: 27px;
  background: #0e1725;
}
.phone__head {
  height: 54px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 14px 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 9px;
}
.phone__content {
  padding: 13px 14px;
}
.phone__content b {
  font-size: 11px;
}
.phone__content p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 8px;
  line-height: 1.7;
  margin-top: 5px;
}
.phone__icons {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}
.float-card {
  position: absolute;
  right: -18px;
  bottom: 22px;
  z-index: 4;
  width: 214px;
  padding: 18px 19px;
  border: 1px solid rgba(240, 212, 155, 0.25);
  border-radius: 16px;
  background: rgba(13, 27, 50, 0.92);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}
.float-card small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  letter-spacing: 0.1em;
}
.float-card strong {
  display: block;
  color: var(--gold-light);
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  margin-top: 4px;
}
.float-card p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  line-height: 1.6;
  margin-top: 6px;
}

.proof {
  position: relative;
  z-index: 3;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(8px);
}
.proof__item {
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}
.proof__item:first-child {
  border-left: 0;
}
.proof__item strong {
  display: block;
  color: var(--gold-light);
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
}
.proof__item span {
  display: block;
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
  margin-top: 4px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  position: relative;
  min-height: 330px;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: 0 10px 30px rgba(11, 20, 38, 0.05);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 155, 75, 0.4);
}
.value-card__no {
  color: rgba(11, 20, 38, 0.08);
  font-family: "DM Sans", sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 14px;
}
.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(201, 155, 75, 0.13);
  color: #9a6a22;
  margin-bottom: 48px;
}
.icon-box svg {
  width: 26px;
  height: 26px;
}
.value-card p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 15px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 28px rgba(11, 20, 38, 0.045);
}
.case-card__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.case-card__label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.case-card__who {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}
.case-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold-light);
  flex: 0 0 auto;
}
.case-card__icon svg {
  width: 22px;
  height: 22px;
}
.before {
  margin-top: 24px;
  padding: 17px 18px;
  background: #eee9df;
  border-left: 3px solid #aaa191;
  border-radius: 0 12px 12px 0;
  color: #545b66;
  font-size: 13px;
}
.after {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  margin-top: 18px;
  color: var(--text);
  font-size: 14px;
}
.after__arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 155, 75, 0.16);
  color: #97671c;
  font-weight: 700;
}
.case-note {
  color: #857e73;
  font-size: 11px;
  text-align: center;
  margin-top: 24px;
}
.case-cta {
  text-align: center;
  margin-top: 34px;
}

.price-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 44px;
}
.price-intro .lead {
  margin-top: 0;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}
.price-card--featured {
  border-color: var(--gold);
  background: linear-gradient(
    180deg,
    rgba(201, 155, 75, 0.17),
    rgba(255, 255, 255, 0.04)
  );
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}
.price-card__tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.price-card__name {
  color: var(--gold-light);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
}
.price-card__price {
  margin-top: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.price-card__price span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  margin-left: 3px;
}
.price-card p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  margin-top: 18px;
}
.price-card__line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 22px 0 18px;
}
.price-card__mini {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}
.price-note {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  text-align: center;
  margin-top: 26px;
}

.option-band {
  background: linear-gradient(135deg, #e9dfcd, #f7f2e8);
  border-top: 1px solid rgba(11, 20, 38, 0.08);
  border-bottom: 1px solid rgba(11, 20, 38, 0.08);
}
.option-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 76px;
  align-items: center;
}
.option-nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  overflow: hidden;
}
.option-num {
  padding: 28px 14px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.option-num:first-child {
  border-left: 0;
}
.option-num strong {
  display: block;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 38px;
  line-height: 1;
}
.option-num strong span {
  font-size: 15px;
}
.option-num small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 9px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.promise-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--paper-2);
}
.promise-card--yes {
  border-top: 4px solid var(--gold);
}
.promise-card--no {
  border-top: 4px solid #778090;
}
.promise-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.promise-card__mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 155, 75, 0.14);
  color: #97671c;
  font-weight: 700;
}
.promise-card--no .promise-card__mark {
  background: rgba(102, 112, 128, 0.13);
  color: #69717d;
}
.promise-list {
  list-style: none;
  margin-top: 24px;
}
.promise-list li {
  position: relative;
  padding: 14px 0 14px 29px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.promise-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.promise-card--no .promise-list li::before {
  background: #8d96a4;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
}
.flow-step {
  position: relative;
  padding-right: 25px;
}
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 4px;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}
.flow-step__no {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(240, 212, 155, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
}
.flow-step h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  margin-top: 20px;
}
.flow-step p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.75;
  margin-top: 9px;
}

.vision-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #081223;
  box-shadow: var(--shadow);
}
.vision-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.vision-note {
  color: var(--muted);
  font-size: 11px;
  margin-top: 13px;
  text-align: right;
}

.cta-section {
  padding: 112px 0;
  background: var(--paper-2);
}
.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 58px 62px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0a1528, #142845);
  color: var(--white);
  box-shadow: 0 26px 70px rgba(9, 19, 38, 0.2);
}
.cta-box::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(201, 155, 75, 0.15);
  filter: blur(22px);
  right: -90px;
  top: -150px;
}
.cta-box__content {
  position: relative;
  z-index: 1;
  max-width: 690px;
}
.cta-box h2 {
  font-size: clamp(29px, 3.4vw, 46px);
}
.cta-box p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  margin-top: 17px;
}
.cta-box__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 250px;
}
.cta-box__actions .btn {
  width: 100%;
}

footer {
  background: #070f1e;
  color: rgba(255, 255, 255, 0.55);
  padding: 42px 0 96px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
}
.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  letter-spacing: 0.2em;
}
.footer-brand span {
  display: block;
  color: var(--gold-light);
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  margin-top: 8px;
}
footer p {
  max-width: 660px;
  font-size: 10px;
  line-height: 1.8;
  text-align: right;
}

.mobile-cta {
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .nav {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__content {
    max-width: 760px;
  }
  .mockup {
    min-height: 500px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
  .proof {
    margin-top: 44px;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .value-card {
    min-height: auto;
  }
  .icon-box {
    margin-bottom: 30px;
  }
  .price-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .price-card--featured {
    transform: none;
  }
  .option-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .flow-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 12px;
  }
  .flow-step:not(:last-child)::after {
    display: none;
  }
  .cta-box {
    grid-template-columns: 1fr;
  }
  .cta-box__actions {
    flex-direction: row;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }
  .wrap {
    width: min(calc(100% - 30px), var(--wrap));
  }
  .section {
    padding: 78px 0;
  }
  .section--compact {
    padding: 62px 0;
  }
  .topbar {
    height: 64px;
  }
  .topbar__cta {
    display: none;
  }
  .logo strong {
    font-size: 15px;
  }
  .hero {
    padding: 112px 0 58px;
  }
  .hero__grid {
    gap: 22px;
  }
  .hero__copy {
    font-size: 14px;
    line-height: 1.9;
  }
  .hero__cta {
    display: grid;
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
    min-height: 54px;
  }
  .mockup {
    min-height: 405px;
    margin-top: 10px;
  }
  .dashboard {
    width: 92%;
    top: 30px;
  }
  .dashboard__body {
    padding: 14px;
  }
  .metric {
    padding: 10px;
  }
  .metric b {
    font-size: 14px;
  }
  .chart {
    height: 110px;
  }
  .phone {
    width: 145px;
    height: 300px;
    border-radius: 27px;
  }
  .phone__screen {
    border-radius: 21px;
  }
  .phone__head {
    height: 43px;
  }
  .float-card {
    width: 170px;
    right: -2px;
    bottom: 5px;
    padding: 14px;
  }
  .float-card strong {
    font-size: 14px;
  }
  .proof {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof__item {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 18px;
  }
  .proof__item:nth-child(-n + 2) {
    border-top: 0;
  }
  .proof__item:nth-child(3) {
    border-left: 0;
  }
  .proof__item strong {
    font-size: 18px;
  }
  .section-head {
    margin-bottom: 34px;
  }
  .lead {
    font-size: 14px;
  }
  .case-grid,
  .promise-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }
  .case-card,
  .promise-card {
    padding: 25px 22px;
  }
  .option-nums {
    grid-template-columns: 1fr;
  }
  .option-num {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .option-num:first-child {
    border-top: 0;
  }
  .flow-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 36px;
  }
  .flow-step {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 18px;
    padding: 0 0 28px;
  }
  .flow-step__no {
    grid-row: 1 / span 2;
  }
  .flow-step h3 {
    margin-top: 2px;
  }
  .flow-step p {
    margin-top: 6px;
  }
  .vision-card img {
    aspect-ratio: 16 / 9;
  }
  .cta-section {
    padding: 78px 0 100px;
  }
  .cta-box {
    padding: 38px 24px;
    border-radius: 22px;
  }
  .cta-box__actions {
    flex-direction: column;
  }
  .footer-inner {
    display: block;
  }
  footer p {
    text-align: left;
    margin-top: 22px;
  }
  .mobile-cta {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8px;
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(7, 15, 30, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
  }
  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
  }
  .mobile-cta__sub {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
  }
  .mobile-cta__main {
    color: var(--ink);
    background: var(--gold);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.hero.hero--full {
  position: relative;
  height: 100svh;
  min-height: 560px;
  padding: 0;
  background: #061225;
  overflow: hidden;
  isolation: isolate;
}
.hero.hero--full::before,
.hero.hero--full::after {
  display: none;
}
.hero-full__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #061225;
  overflow: hidden;
}
.hero-full__backdrop,
.hero-full__picture {
  position: absolute;
  inset: 0;
  display: block;
}
.hero-full__backdrop img,
.hero-full__picture img {
  width: 100%;
  height: 100%;
  max-width: none;
}
.hero-full__backdrop img {
  object-fit: cover;
  object-position: center;
  filter: blur(24px) brightness(0.44) saturate(0.84);
  transform: scale(1.07);
  opacity: 0.82;
}
.hero-full__picture img {
  object-fit: contain;
  object-position: center;
}
.hero-full__shade {
  display: none;
}
.hero-full__mobile {
  display: none;
}
.proof-band {
  background: #071224;
  padding: 22px 0 28px;
}
.proof-band .proof {
  margin-top: 0;
}

@media (min-width: 1021px) {
  .topbar {
    inset: 18px auto auto 50%;
    width: min(calc(100% - 36px), 1180px);
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    background: rgba(7, 17, 34, 0.9);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -145%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.32s ease,
      opacity 0.25s ease,
      background 0.25s ease;
  }
  .topbar.is-scrolled {
    height: 60px;
    background: rgba(7, 17, 34, 0.94);
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
  }
  .topbar__inner {
    width: 100%;
    margin: 0;
    padding: 0 10px 0 20px;
  }
  .logo strong {
    font-size: 15px;
  }
  .logo span {
    margin-top: 5px;
    font-size: 8px;
  }
  .nav {
    gap: 24px;
  }
  .topbar__cta {
    min-height: 42px;
  }
}

@media (max-width: 1020px) {
  .topbar,
  .topbar.is-scrolled {
    inset: 0 0 auto;
    width: 100%;
    height: 64px;
    border-radius: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: rgba(9, 19, 38, 0.94);
    box-shadow: none;
  }
  .topbar__inner {
    width: min(calc(100% - 44px), var(--wrap));
    margin-inline: auto;
    padding: 0;
  }
  .hero.hero--full {
    min-height: 760px;
    height: auto;
    padding: 112px 0 58px;
    display: flex;
    align-items: flex-end;
  }
  .hero-full__backdrop img {
    object-position: 74% center;
    filter: blur(18px) brightness(0.34) saturate(0.74);
    opacity: 0.78;
  }
  .hero-full__picture img {
    object-fit: cover;
    object-position: 74% center;
    opacity: 0.58;
  }
  .hero-full__shade {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(
        90deg,
        rgba(3, 12, 28, 0.98) 0%,
        rgba(3, 12, 28, 0.88) 50%,
        rgba(3, 12, 28, 0.34) 100%
      ),
      linear-gradient(180deg, rgba(3, 12, 28, 0.12), rgba(3, 12, 28, 0.5));
  }
  .hero-full__mobile {
    display: block;
    position: relative;
    z-index: 2;
    width: min(calc(100% - 44px), 760px);
    margin-inline: auto;
  }
  .hero-full__brand {
    color: var(--gold-light);
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    margin-bottom: 18px;
  }
  .hero-full__mobile h1 {
    max-width: 650px;
    font-size: clamp(40px, 7vw, 68px);
    line-height: 1.32;
  }
  .hero-full__mobile p {
    max-width: 600px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.95;
  }
  .hero-full__mobile .hero__cta {
    margin-top: 32px;
  }
}

@media (max-width: 720px) {
  .topbar__inner {
    width: min(calc(100% - 30px), var(--wrap));
  }
  .hero.hero--full {
    min-height: 700px;
    padding: 104px 0 42px;
  }
  .hero-full__backdrop img {
    object-position: 72% center;
  }
  .hero-full__picture img {
    object-position: 72% center;
    opacity: 0.5;
  }
  .hero-full__shade {
    background:
      linear-gradient(
        90deg,
        rgba(3, 12, 28, 0.99) 0%,
        rgba(3, 12, 28, 0.9) 64%,
        rgba(3, 12, 28, 0.38) 100%
      ),
      linear-gradient(180deg, rgba(3, 12, 28, 0.15), rgba(3, 12, 28, 0.62));
  }
  .hero-full__mobile {
    width: min(calc(100% - 30px), 760px);
  }
  .hero-full__brand {
    font-size: 11px;
    margin-bottom: 14px;
  }
  .hero-full__mobile h1 {
    font-size: clamp(34px, 10.5vw, 50px);
  }
  .hero-full__mobile p {
    font-size: 14px;
    margin-top: 18px;
  }
  .proof-band {
    padding: 14px 0 20px;
  }
  .proof-band .proof {
    margin-top: 0;
  }
}
