:root {
  --brand-blue: #0066fc;
  --deep-blue: #0050dd;
  --royal-blue: #223ce7;
  --navy: #052273;
  --soft-blue: #6a9cff;
  --text: #333333;
  --muted: #475569;
  --line: #dbe5f0;
  --surface: #f8fafc;
  --paper: #ffffff;
  --bg: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

.topbar__inner {
  width: min(1358px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__logo {
  width: auto;
  height: 28px;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__switch,
.topbar__login {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  height: 28px;
  font-size: 12px;
  font-weight: 600;
}

.topbar__switch {
  position: relative;
  gap: 6px;
  padding: 0 14px;
  color: #f23b47;
  background: #fff;
  border: 1px solid #f23b47;
}

.topbar__switch-mode {
  font-size: 8px;
  line-height: 1;
  padding-top: 1px;
  color: #fff;
}

.topbar__switch-divider {
  width: 1px;
  height: 8px;
  background: rgba(255, 255, 255, 0.75);
}

.topbar__switch::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  height: 11px;
  border-radius: 999px 999px 0 0;
  background: #f23b47;
}

.topbar__switch-mode,
.topbar__switch-divider,
.topbar__switch-label {
  position: relative;
  z-index: 1;
}

.topbar__switch-label {
  margin-left: 6px;
  padding-top: 10px;
}

.topbar__login {
  padding: 0 18px;
  font-size: 14px;
  color: #fff;
  background: var(--brand-blue);
}

.hero {
  background: #0050dd;
}

.hero__image {
  width: 100%;
  height: auto;
}

.message {
  position: relative;
  padding: 0 16px 0;
  background: linear-gradient(180deg, #0050dd 0%, #0050dd 100%);
}

.message::before,
.message__panel-before::before {
  content: "";
  position: absolute;
  top: 124px;
  width: 96px;
  height: 128px;
  background: url("assets/images/products-heading-arrow.svg") no-repeat center / contain;
  clip-path: none;
  opacity: 0.95;
}

.message::before {
  left: max(10px, calc(50% - 875px));
  transform: scale(200%);  

}

.message__panel-before::before {
  right: max(10px, calc(50% - 875px));
  transform: translate(-50px, 500px);
}

.message__panel {
  position: relative;
  width: min(1418px, 100%);
  margin: 0 auto;
  padding: 51px 48px 51px;
  background: var(--surface);
  border-radius: 8px;
}

.message__title-wrap {
  position: absolute;
  left: 50%;
  top: -62px;
  width: min(662px, calc(100% - 32px));
  transform: translateX(-50%);
}

.message__title-shadow {
  position: absolute;
  left: 50%;
  top: 36px;
  width: min(458px, 69.2%);
  transform: translateX(-50%);
  mix-blend-mode: multiply;
}

.message__title-image {
  position: relative;
  width: 100%;
}
.message__title-image--desktop{
  height: 101px;
}
.message__title-image--mobile,
.message__title-shadow--mobile {
  display: none;
}

.message__heading {
  margin-top: 0;
  text-align: center;
}

.message__heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  font-weight: 700;
}

.message__heading h2 span {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-right: 3px;
}

.message__heading p {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  font-weight: 700;
}

.message__eyebrow {
  margin: 30px auto 0;
  width: 148px;
  display: grid;
  gap: 0;
  justify-items: center;
}

.message__eyebrow span {
  color: var(--brand-blue);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.8em;
  padding-left: 0.8em;
}

.message__eyebrow img {
  width: 18px;
  height: 13.43px;
}

.message__body {
  display: grid;
  gap: 0;
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.message__body p {
  margin: 0 0 16px;
}

.message__body p:last-child {
  margin-bottom: 0;
}

.message__signature {
  margin: 34px 0 0;
  text-align: right;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.plans {
  position: relative;
  overflow: hidden;
  padding: 64px 16px 59px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(180deg, #0050dd 0%, #0050dd 100%);
}

.plans::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 50% 7%, rgba(125, 221, 255, 0.38), rgba(0, 80, 221, 0) 30%); */
  pointer-events: none;
}

.plans__header,
.plans__grid {
  position: relative;
  z-index: 1;
  width: min(1402px, 100%);
  margin: 0 auto;
}

.plans__header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: -30px;
  position: relative;
}
.plans__header .plans-banner-bg {
  position: absolute;
  top: -100px;
  left: 0;
}
.plans__header picture{
  width:100%;
}
.plans__header img{
  width:100%;
}
#amr-id-plans-bg-lines{
  position: absolute;
  top: 10px;
  left: 0;
  width:100vw;
}
.plans__title {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}

.plans__badge {
  width: 238px;
}

.plans__title h2 {
  margin: 0;
  font-size: 88px;
  line-height: 0.95;
  font-weight: 700;
}

.plans__title p {
  margin: 10px 0 0;
  font-family: "Jost", sans-serif;
  font-size: 36px;
  letter-spacing: 0.95em;
  text-transform: uppercase;
}

.plans__character {
  width: 427px;
  margin-left: -4px;
  margin-top: -54px;
}

.plans__grid--desktop {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 56px;
}

.plan-card {
  display: grid;
  gap: 0;
}

.plan-card--full {
  grid-column: 1 / -1;
  width: 676px;
  margin: 0 auto;
}

.plan-card__head {
  display: grid;
  grid-template-columns: 53px 1fr;
  align-items: end;
  min-height: 109px;
  padding: 18px 0 0 8px;
  background: linear-gradient(180deg, var(--royal-blue), var(--navy));
  border-radius: 8px 8px 0 0;
  box-shadow: 0 0 4px 0 #002cbe;
}

.plan-card__head--full {
  min-height: 156px;
}

.plan-card__number {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px 16px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 200;
  line-height: 1;
}

.plan-card__copy {
  min-height: 91px;
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 5px;
  padding: 18px 28px;
  background: linear-gradient(180deg, #fff, var(--soft-blue));
  border-radius: 8px 8px 0 0;
  text-align: right;
}

.plan-card__copy h3,
.plan-card__copy p {
  margin: 0;
  color: var(--navy);
}

.plan-card__copy h3 {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  color: #0e308e;
}

.plan-card__head--full .plan-card__copy p {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 500;
}

.plan-card__logo {
  width: 410px;
}

.plan-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 224px;
  padding: 0 34px;
  height: 30px;
  border-radius: 999px;
  background: #fff;
  color: #475569;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.18px;
}

.plan-card__cta::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 4px;
  flex-shrink: 0;
  background: url('assets/images/plan-cta-arrow.svg') no-repeat center / contain;
}

.plan-card__image {
  width: 100%;
  border-radius: 0 0 8px 8px;
}

.plans__grid--mobile {
  display: none;
}

.products {
  position: relative;
  overflow: hidden;
  padding: 76px 16px 96px;
  background:
    linear-gradient(120deg, rgba(0, 102, 252, 0.08) 1px, transparent 1px) 0 0 / 86px 72px,
    linear-gradient(60deg, rgba(0, 102, 252, 0.08) 1px, transparent 1px) 0 0 / 86px 72px,
    #fff;
}

.products::before,
.products::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 320px;
  height: 260px;
  opacity: 0.3;
  background:
    linear-gradient(120deg, rgba(0, 167, 255, 0.6) 1px, transparent 1px) 0 0 / 48px 42px,
    linear-gradient(60deg, rgba(0, 167, 255, 0.35) 1px, transparent 1px) 0 0 / 48px 42px;
  mask: linear-gradient(180deg, #000 70%, transparent);
}

.products::before {
  left: max(6px, calc(50% - 940px));
}

.products::after {
  right: max(6px, calc(50% - 940px));
  transform: scaleX(-1);
}

.products__title,
.products__block {
  position: relative;
  z-index: 1;
  width: min(1402px, 100%);
  margin: 0 auto;
}

.products__title {
  text-align: center;
}

.products__title-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 520px;
  height: auto;
  opacity: 1;
}

.products__title-bg--left {
  transform: rotate(-180deg);
  transform-origin: center center;
  top: -540px;
  left: -210px;
}

.products__title-bg--right {
  transform: rotate(0deg);
  transform-origin: center center;
  top: -100px;
  right: -210px;
}

.products__title-main {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.products__title > p {
  position: relative;
  z-index: 1;
}

.products__arrow {
  width: 63px;
}

.products__title h2 {
  margin: 0;
  line-height: 1;
  font-weight: 700;
}

.products__heading-lg {
  font-size: clamp(36px, 4.9vw, 98px);
}

.products__heading-sm,
.products__heading-suffix {
  font-size: clamp(24px, 3.6vw, 72px);
}

#amr-id-products-line2 {
  display: inline;
}

.products__title p {
  margin: 16px 0 0;
  font-family: "Jost", sans-serif;
  font-size: 36px;
  letter-spacing: 0.95em;
  color: var(--brand-blue);
}

.products__block {
  margin-top: 60px;
}

.products__block h3 {
  margin: 0 0 26px;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}

.products__service-grid {
  display: grid;
  gap: 24px;
}

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

.products__service-grid--mobile {
  display: none;
}

.products__service-grid img {
  width: 100%;
  border-radius: 8px;
}

@property --products-service-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.products__service-grid > a {
  position: relative;
  display: block;
  border-radius: 8px;
  isolation: isolate;
}

.products__service-grid > a::before{
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  padding: 6px;
  background: conic-gradient(
    from var(--products-service-angle),
    #0066fc 0deg,
    #6a9cff 70deg,
    #eee 90deg,
    #6a9cff 110deg,
    #0066fc 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.products__service-grid > a::before {
  filter: drop-shadow(0 0 5px rgba(106, 156, 255, 0.55))
          drop-shadow(0 0 12px rgba(0, 102, 252, 0.35));
}



.products__service-grid > a:hover::before {
  opacity: 0.95;
  animation: products-service-ring-spin 4s linear infinite;
}



@keyframes products-service-ring-spin {
  to {
    --products-service-angle: 360deg;
  }
}

@keyframes products-service-glow-pulse {
  0%, 100% { opacity: 0.4;  filter: blur(8px); }
  50%      { opacity: 0.7;  filter: blur(11px); }
}

.systems {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.system-card {
  width: 688px;
  flex-shrink: 0;
  min-height: 205px;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 322px;
  gap: 22px;
  padding: 12px 10px 12px 34px;
  align-items: center;
}

.system-card--primary {
  background: var(--brand-blue);
  color: #fff;
}

.system-card--secondary {
  background: #fff;
  border: 1px solid var(--brand-blue);
}

.system-card__copy {
  display: grid;
  gap: 18px;
  padding: 12px 0;
}

.system-card__logo {
  width: 260px;
}

.system-card__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.system-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.system-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

.system-card__media img {
  max-height: 181px;
  object-fit: contain;
}

.system-soon {
  width: 688px;
  flex-shrink: 0;
  min-height: 86px;
  padding: 24px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #94a3b8;
  border-radius: 8px;
  background: #f1f5f9;
}

.system-soon__logo {
  max-width: 200px;
}

.system-soon span {
  color: #475569;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
}

.products__block--satoshi {
  display: grid;
}

.products__mini-title {
  margin: 0;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.satoshi-banner {
  position: relative;
  min-height: 182px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(90deg, #360404, #100302);
}

.satoshi-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 35%, rgba(255, 255, 255, 0.03)),
    linear-gradient(90deg, #360404, #100302);
}

.satoshi-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/satoshi-banner-art.svg")
    center / auto no-repeat;
}

.history {
  position: relative;
  padding: 70px 16px 120px;
  background: #fff;
}

.history__header {
  width: min(1402px, 100%);
  margin: 0 auto 45px;
  text-align: center;
}

.history__header h2 {
  margin: 0;
  font-size: clamp(46px, 4.3vw, 86px);
  line-height: 1.05;
  font-weight: 700;
}
#amr-id-history-heading-no{
  font-size: clamp(32px, 4.3vw, 48px);
}
#amr-id-history-heading-no br{
  display: none;
}
.history__header p {
  padding-left: 45%;
  text-align: start;
  margin: 14px 0 0;
  font-family: "Jost", sans-serif;
  font-size: clamp(16px, 1.5vw, 36px);
  letter-spacing: 0.95em;
  color: var(--brand-blue);
}

.timeline {
  position: relative;
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 60px 0 29px 360px;
  background: #fff;
}

.timeline__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 470px;
  height: 100%;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(134, 136, 161, 0) 0%, rgba(134, 136, 161, 0.8) 100%),
    linear-gradient(180deg, #1b7afb 0%, #0008ab 100%);
  background-blend-mode: multiply, normal;
  pointer-events: none;
}

.timeline__bg-grid,
.timeline__bg-bars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.timeline__bg-grid {
  background-image: url("assets/images/timeline-grid.svg");
  background-repeat: repeat;
  background-size: 36px 36px;
}

.timeline__bg-bars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("assets/images/timeline-bars.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: 0.35;
  mix-blend-mode: screen;
}

.timeline::after {
  content: "";
  position: absolute;
  left: 369px;
  top: 4px;
  width: 106px;
  height: 80px;
  background: url("assets/images/timeline-marker-arrow.svg")
    center / contain no-repeat;
}

.timeline-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 4px;
  padding-left: 4px;
  padding-top: 2em;
}

.timeline-row__date {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 0;
  color: #fff;
  margin-left: -10px;
}

.timeline-row__date strong {
  width: 100%;
  padding-bottom: 2px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
  font-family: "Jost", sans-serif;
  font-size: 32px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: right;
}

.timeline-row__date span {
  width: 47px;
  padding-top: 2px;
  font-size: 22px;
  line-height: 1.3;
  text-align: right;
}

.timeline-row__body {
  position: relative;
  background:transparent;
  min-height: 125px;
  padding: 18px 18px 18px 22px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.timeline-row__body::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 0;
  bottom: 0;
  height: 4px;
  box-shadow: 4px 4px 4px #e2e8f0;
}

.timeline-row__body p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.timeline-row__body .fw-normal {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.timeline-row__body--final {
  border-bottom: none;
}

.timeline-row__body--final::after {
  display: none;
}

.timeline-row--multi .timeline-row__date {
  gap: 0;
}

.timeline-row--multi .timeline-row__event {
  grid-column: 2;
  position: relative;
  padding: 8px 18px 8px 22px;
  display: grid;
  align-content: center;
}

.timeline-row--multi .timeline-row__date + .timeline-row__event {
  align-content: end;
  padding-bottom: 12px;
}

.timeline-row--multi .timeline-row__event.timeline-row__event_bar::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 0;
  bottom: 0;
  height: 4px;
  box-shadow: 4px 4px 4px #e2e8f0;
}

.timeline-row--multi .timeline-row__event--final::after {
  display: none;
}

.timeline-row--multi .timeline-row__event p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.timeline-row--multi .timeline-row__event .fw-normal {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.timeline-row--multi .timeline-row__month {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  margin-left: -10px;
}

.timeline-row--multi .timeline-row__month span {
  width: 47px;
  padding-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.85);
  font-size: 22px;
  line-height: 1.3;
  text-align: right;
}

@media (max-width: 1024px) {
  .topbar__inner {
    width: calc(100vw - 40px);
  }

  .message__panel {
    padding-inline: 28px;
  }

  .plans__title h2 {
    font-size: 64px;
  }

  .plans__title p {
    font-size: 28px;
  }

  .plans__badge {
    width: 188px;
  }

  .plans__character {
    width: 320px;
    margin-top: -24px;
  }

  .products__heading-lg {
    font-size: 62px;
  }

  .products__heading-sm,
  .products__heading-suffix {
    font-size: 46px;
  }

  .products__title p {
    font-size: 28px;
  }

  .timeline {
    padding-left: 260px;
  }

  .timeline__bg {
    width: 340px;
  }

  .timeline::after {
    left: 269px;
  }

  .timeline-row {
    grid-template-columns: 76px 1fr;
    padding-left: 0px;
  }
}

@media (max-width: 767px) {
  .topbar {
    display: none;
  }

  .message {
    padding-inline: 0;
  }

  .message::before,
  .message__panel-before::before {
    display: none;
  }

  .message__panel {
    width:  calc(100vw - 40px);
    padding: 42px 8px 42px;
  }

  .message__title-wrap {
    /* top: -35px; */
    width: 100%;
  }

  .message__title-image--desktop,
  .message__title-shadow--desktop {
    display: none;
  }

  .message__title-image--mobile,
  .message__title-shadow--mobile {
    display: block;
    width: 100%;
  }

  .message__title-shadow--mobile {
    top: 15px;
  }

  .message__heading h2,
  .message__heading p {
    font-size: 28px;
    line-height: 1.42;
  }

  .message__body {
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.04em;
  }

  .message__signature {
    line-height: 1.5;
  }

  .plans {
    padding: 34px 10px 29px;
    background-size: 18px 18px, 18px 18px, auto;
  }

  .plans__header {
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: -40px;
    margin-left: -10px;
    width: 100vw;
  }
  .plans__header .plans-banner-bg {
    position: absolute;
    top: 0px;
    left: -100px;
  }
  #amr-id-plans-bg-lines{
    top: 200px;
  }
  .plans__title {
    width: 185px;
    flex-direction: column;
    gap: 0;
  }

  .plans__badge {
    width: 154px;
    margin: 0 auto;
  }

  .plans__title h2 {
    font-size: 64px;
    line-height: 0.85;
    text-align: center;
  }

  .plans__title p {
    margin-top: 0;
    font-size: 16px;
    letter-spacing: 0.95em;
    text-align: center;
  }

  .plans__character {
    width: 227px;
    margin: -10px 0 0 -22px;
  }

  .plans__grid--desktop {
    display: none;
  }

  .plans__grid--mobile {
    display: grid;
    gap: 56px;
    /* width: min(339px, 100%); */
  }

  .plan-promo {
    position: relative;
    min-height: 100px;
    display: grid;
    grid-template-columns: 32px 1fr 135px;
    align-items: stretch;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--royal-blue), var(--navy));
  }

  .plan-promo__number {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 0 18px;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 44px;
    font-style: italic;
    font-weight: 200;
    line-height: 1;
  }

  .plan-promo__content {
    position: relative;
    z-index: 1;
    margin: 8px 0 -8px 0;
    padding: 18px 14px;
    padding-right: 0px;
    padding-left: 12px;
    display: grid;
    align-content: center;
    gap: 5px;
    background: linear-gradient(180deg, #fff, var(--soft-blue));
    border-radius: 4px 0 0 4px;
  }

  .plan-promo__content h3,
  .plan-promo__content p {
    margin: 0;
    color: #0e308e;
  }

  .plan-promo__content h3 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
  }

  .plan-promo__content p {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
  }

  .plan-promo__micro-logo {
    width: 163px;
  }

  .plan-promo img:last-child {
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 135px;
    height: 135px;
    object-fit: cover;
    z-index: 1;
  }

  .plan-promo .plan-card__cta {
    min-width: 152px;
    width: 152px;
    padding: 0;
    height: 18px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.12px;
  }

  .products {
    padding: 52px 12px 0px;
  }

  .products::before,
  .products::after {
    display: none;
  }

  .products__title-bg {
    width: 260px;
  }

  .products__title-bg--left {
    top: -230px;
    left: -84px;
  }

  .products__title-bg--right {
    top: 14px;
    right: -84px;
  }

  .products__title-main {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: flex-start;
    max-width: 390px;
    margin: auto;
  }

  .products__arrow {
    width: 24px;
    margin-top: 8px;
  }

  .products__title h2 {
    flex: 1;
    line-height: 1.2;
  }

  .products__heading-lg {
    font-size: 36px;
  }

  .products__heading-sm {
    font-size: 24px;
  }

  .products__heading-suffix {
    font-size: 22px;
    letter-spacing: -0.44px;
  }

  #amr-id-products-line2 {
    display: block;
    text-align: end;
  }

  .products__title {
    text-align: start;
  }

  .products__title p {
    margin-top: 2px;
    font-size: 16px;
    letter-spacing: 0.95em;
    text-align:center;
    margin-left: 180px;
  }

  .products__block {
    margin-top: 36px;
    width: min(366px, 100%);
  }

  .products__block h3 {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.25;
  }

  .products__service-grid--desktop {
    display: none;
  }

  .products__service-grid--mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .systems {
    flex-direction: column;
    gap: 24px;
  }

  .system-card {
    width: 100%;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 18px;
    padding: 20px 12px 0;
  }

  .system-card__copy {
    gap: 22px;
    padding: 0;
  }

  .system-card__logo {
    width: auto;
    max-width: 200px;
    max-height: 32px;
  }

  .system-card__lead {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.18px;
  }

  .system-card__text {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.14px;
  }

  .system-card__media {
    justify-content: stretch;
  }

  .system-card__media img {
    width: 100%;
    max-height: none;
  }

  .system-soon {
    width: 100%;
    min-height: 88px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .system-soon__logo {
    max-width: 244px;
  }

  .system-soon span {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.32px;
  }

  .products__mini-title {
    font-size: 24px;
  }

  .satoshi-banner {
    min-height: 170px;
  }

  .satoshi-banner::after {
    background-size: 80%;
  }

  .history {
    padding: 34px 0 54px;
  }

  .history__header {
    width: min(288px, calc(100vw - 32px));
    margin-bottom: 34px;
    position: relative;
    text-align: start;
  }

  .history__header h2 {
    font-size: 46px;
  }
  #amr-id-history-heading-no br{
    display: block;
  }
  #amr-id-history-word {
    display: block;
    text-align: center;
  }
  .history__header p {
    position: absolute;
    right: 0;
    margin:0;
    font-size: 24px;
    letter-spacing: 0.55em;
  }

  .timeline {
    width: 100%;
    padding: 60px 0 29px 0;
  }

  .timeline__bg {
    width: 80px;
    border-radius: 0;
    background: linear-gradient(180deg, #1b7afb, #0008ab);
  }

  .timeline__bg-grid,
  .timeline__bg-bars {
    display: none;
  }

  .timeline::after {
    left: -20px;
    top: -10px;
    width: 106px;
  }

  .timeline-row {
    grid-template-columns: 76px 1fr;
    padding-left: 4px;
  }

  .timeline-row__date strong {
    font-size: 26px;
    line-height: 1.6;
  }

  .timeline-row__date span {
    width: 47px;
    font-size: 18px;
  }

  .timeline-row__body {
    min-height: 125px;
    padding: 16px 12px;
  }

  .timeline-row__body p {
    font-size: 16px;
    line-height: 1.5;
  }

  .timeline-row--multi .timeline-row__event {
    padding: 6px 12px;
  }

  .timeline-row--multi .timeline-row__event p {
    font-size: 16px;
    line-height: 1.5;
  }

  .timeline-row--multi .timeline-row__month span {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .message__title-wrap {
    top: -35px;
  }
  .products__title p {
    text-align:end;
  }

}
/* ============================================================
   FX-20th : ambient effects (CSS-only, scroll-driven, no JS)
   - Uses animation-timeline: view() (Chromium 115+, Edge, Safari TP).
   - Browsers without support keep elements fully visible (default state).
   - All motion respects prefers-reduced-motion.
   ============================================================ */

/* -- Scroll-driven entrance: section h2 ------------------------ */
@supports (animation-timeline: view()) {
  .message__heading h2,
  .products__title h2,
  .history__header h2 {
    animation: fx-fade-up linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }

  /* -- Plan cards stagger ------------------------------------- */
  .plan-card,
  .plan-promo {
    animation: fx-fade-up linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 50%;
  }

  /* -- System cards / Service grid imgs ----------------------- */
  .system-card,
  .system-soon,
  .products__service-grid img {
    animation: fx-fade-up linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }

  /* -- Timeline rows ------------------------------------------ */
  .timeline-row {
    animation: fx-fade-slide-right linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 50%;
  }

  /* -- Hero subtle scale-in ----------------------------------- */
  .hero__image {
    animation: fx-hero-zoom linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 40%;
  }
}

@keyframes fx-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fx-fade-slide-right {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fx-hero-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

/* -- Hover effects -------------------------------------------- */
.plan-card {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px -18px rgba(0, 8, 171, 0.6),
              0 10px 24px -10px rgba(0, 8, 171, 0.45);
}

.plan-card__cta {
  transition: background 0.25s ease, color 0.25s ease;
}
.plan-card__cta::after {
  transition: transform 0.32s ease;
}
.plan-card:hover .plan-card__cta::after {
  transform: translateX(4px);
}

.system-card {
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.system-card--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85),
              0 0 24px 4px rgba(125, 221, 255, 0.55),
              0 22px 48px -16px rgba(0, 102, 252, 0.7);
}
.system-card--secondary:hover {
  transform: translateY(-4px);
  border-color: var(--deep-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 252, 0.4),
              0 0 24px 4px rgba(0, 102, 252, 0.35),
              0 22px 48px -16px rgba(0, 102, 252, 0.5);
}

.timeline-row {
  transition: background 0.3s ease;
  border-radius: 4px;
}
.timeline-row:hover {
  background: linear-gradient(90deg, rgba(0, 102, 252, 0.16), rgba(0, 102, 252, 0.04) 70%, transparent);
  box-shadow: inset 4px 0 0 var(--brand-blue);
}

/* -- Plans section: pulsing radial highlight ------------------ */
.plans::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 12%,
    rgba(125, 221, 255, 0.32) 0%,
    rgba(0, 80, 221, 0) 38%
  );
  animation: fx-plans-pulse 4s ease-in-out infinite;
  mix-blend-mode: screen;
  z-index: 0;
}

@keyframes fx-plans-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.08); }
}


/* -- CTA shimmer (.plan-card__cta) ---------------------------- */
.plan-card__cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.plan-card__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(0, 102, 252, 0.55) 50%,
    transparent 100%
  );
  filter: blur(2px);
  animation: fx-cta-shimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.plan-card__cta > * { position: relative; z-index: 1; }

@keyframes fx-cta-shimmer {
  0%   { left: -120%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}

