/* =========================================================
   SHIFPIA Landing Page / 2026 Redesign
   Clean editorial style: ivory, deep navy, sky blue, soft pink
   ========================================================= */

:root {
  --navy: #0b2340;
  --navy-deep: #07182c;
  --navy-soft: #163757;
  --blue: #2b9ec1;
  --blue-dark: #137b9c;
  --blue-light: #dff4f8;
  --blue-pale: #f0f9fb;
  --pink: #e96686;
  --pink-dark: #c94c6b;
  --pink-pale: #fff0f4;
  --ivory: #f6f3ea;
  --ivory-light: #fbfaf6;
  --white: #ffffff;
  --ink: #172536;
  --muted: #657282;
  --line: #dce3e8;
  --line-dark: rgba(11, 35, 64, 0.14);
  --shadow-sm: 0 10px 30px rgba(11, 35, 64, 0.07);
  --shadow-md: 0 24px 65px rgba(11, 35, 64, 0.12);
  --shadow-lg: 0 35px 90px rgba(7, 24, 44, 0.16);
  --container: 1180px;
  --header-height: 78px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 34px;
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-en: "Outfit", "Noto Sans JP", sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menuOpen,
body.modalOpen {
  overflow: hidden;
}

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

svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(43, 158, 193, 0.42);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

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

.skipLink {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skipLink:focus {
  transform: translateY(0);
}

/* Header */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.siteHeader.isScrolled {
  border-color: rgba(11, 35, 64, 0.08);
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.06);
}

.siteHeader__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
}

.brand__mark {
  position: relative;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), #73cddd 62%, var(--pink));
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(43, 158, 193, 0.2);
}

.brand__mark::after {
  content: "S";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
}

.brand__mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-family: var(--font-en);
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand__text small {
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.desktopNav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  margin-left: auto;
}

.desktopNav a,
.textLink {
  position: relative;
  color: #37475a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.desktopNav a::after,
.textLink::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktopNav a:hover::after,
.textLink:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.siteHeader__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menuButton,
.mobileNav {
  display: none;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button span {
  font-family: var(--font-en);
}

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

.button--large {
  min-height: 61px;
  padding: 17px 32px;
  font-size: 15px;
}

.button--primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 12px 28px rgba(233, 102, 134, 0.28);
}

.button--primary:hover {
  background: var(--pink-dark);
  box-shadow: 0 16px 34px rgba(233, 102, 134, 0.34);
}

.button--outline {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(11, 35, 64, 0.2);
}

.button--outline:hover {
  background: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.button--light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.button--request {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(43, 158, 193, 0.27);
}

.button--request:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 34px rgba(43, 158, 193, 0.32);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px 0 88px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92), rgba(240, 249, 251, 0.74)),
    var(--blue-pale);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -150px;
  left: -10%;
  height: 190px;
  background: var(--navy);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  transform: rotate(-2deg);
}

.hero__decor {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero__decor--one {
  top: -120px;
  right: 30%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(43, 158, 193, 0.18);
}

.hero__decor--two {
  bottom: 40px;
  left: -80px;
  width: 230px;
  height: 230px;
  background: rgba(233, 102, 134, 0.06);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: clamp(50px, 6vw, 90px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--pink);
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(40px, 4.3vw, 67px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.055em;
}

.hero h1 em,
.applyHero h1 em {
  position: relative;
  color: var(--blue-dark);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  z-index: -1;
  height: 12px;
  background: rgba(233, 102, 134, 0.18);
  border-radius: 999px;
  transform: rotate(-1deg);
}

.hero__mobileBreak {
  display: none;
}

.hero__lead {
  margin: 25px 0 0;
  color: #516173;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__meta {
  display: flex;
  gap: 0;
  margin-top: 35px;
}

.hero__meta > div {
  min-width: 190px;
  padding: 0 28px;
  border-left: 1px solid rgba(11, 35, 64, 0.18);
}

.hero__meta > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__meta span {
  display: block;
  color: var(--blue-dark);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero__meta strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-family: var(--font-en);
  font-size: 32px;
  line-height: 1.15;
}

.hero__meta strong small {
  margin-left: 3px;
  font-family: var(--font-jp);
  font-size: 13px;
}

.hero__meta p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.heroPhoto {
  position: relative;
  padding: 18px 18px 48px 0;
}

.heroPhoto::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -28px;
  width: 65%;
  height: 72%;
  background: var(--blue-light);
  border-radius: 0 0 0 120px;
}

.heroPhoto__frame {
  position: relative;
  z-index: 1;
  height: clamp(440px, 47vw, 610px);
  overflow: hidden;
  background: #dce6e9;
  border-radius: 4px 80px 4px 80px;
  box-shadow: var(--shadow-lg);
}

.heroPhoto__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.heroPhoto__label {
  position: absolute;
  right: -5px;
  bottom: 14px;
  z-index: 3;
  width: min(420px, 80%);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 21px;
  color: var(--white);
  background: rgba(11, 35, 64, 0.94);
  box-shadow: 0 20px 44px rgba(7, 24, 44, 0.26);
  backdrop-filter: blur(12px);
}

.heroPhoto__labelIcon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #93e0ea;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.heroPhoto__labelIcon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.heroPhoto__label small,
.heroPhoto__label strong {
  display: block;
}

.heroPhoto__label small {
  margin-bottom: 3px;
  color: #8ed9e5;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.heroPhoto__label strong {
  font-size: 13px;
  font-weight: 700;
}

.heroPhoto__caption {
  position: absolute;
  bottom: 110px;
  left: -67px;
  z-index: 2;
  margin: 0;
  color: rgba(11, 35, 64, 0.5);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(-90deg);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

.hero__scroll span {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.24em;
}

.hero__scroll i {
  position: relative;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.hero__scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

/* Quick facts */
.quickFacts {
  position: relative;
  z-index: 4;
  color: var(--white);
  background: var(--navy);
}

.quickFacts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 0 44px;
}

.quickFact {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 0 35px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.quickFact:first-child {
  padding-left: 0;
  border-left: 0;
}

.quickFact__number {
  color: #75cfdf;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
}

.quickFact strong,
.quickFact small {
  display: block;
}

.quickFact strong {
  font-size: 14px;
  font-weight: 700;
}

.quickFact small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

/* Shared sections */
.section {
  padding: 120px 0;
}

.section--ivory {
  background: var(--ivory-light);
}

.section--blueSoft {
  background: var(--blue-pale);
}

.sectionHeading {
  max-width: 670px;
  margin-bottom: 64px;
}

.sectionHeading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.sectionHeading__en {
  margin: 0 0 13px;
  color: var(--blue-dark);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.sectionHeading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.sectionHeading h2 span {
  color: var(--blue-dark);
}

.sectionHeading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}

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

.challengeCard {
  position: relative;
  min-height: 340px;
  padding: 43px 34px 36px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(11, 35, 64, 0.08);
  border-radius: 4px 38px 4px 38px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challengeCard:nth-child(2) {
  margin-top: 28px;
}

.challengeCard:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.challengeCard__index {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(11, 35, 64, 0.09);
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.challengeCard__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--blue-dark);
  background: var(--blue-pale);
  border-radius: 50%;
}

.challengeCard__icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.challengeCard h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.challengeCard p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.conceptStatement {
  display: grid;
  grid-template-columns: 110px 1fr 1.15fr;
  align-items: center;
  gap: 35px;
  margin-top: 90px;
  padding: 54px 60px;
  color: var(--white);
  background: var(--navy);
  border-radius: 3px 60px 3px 60px;
  box-shadow: var(--shadow-md);
}

.conceptStatement__mark {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), #64c8d9);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 37px;
  font-weight: 700;
}

.conceptStatement .sectionHeading__en {
  color: #74d3e2;
}

.conceptStatement h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.6;
  letter-spacing: -0.03em;
}

.conceptStatement > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  line-height: 2;
}

/* Dark CTA break */
.darkBreak {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  color: var(--white);
  background: var(--navy-deep);
}

.darkBreak::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -60px;
  width: 420px;
  height: 220px;
  border: 1px solid rgba(117, 207, 223, 0.18);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.darkBreak__word {
  position: absolute;
  top: 50%;
  left: -1vw;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-en);
  font-size: clamp(76px, 12vw, 170px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(-50%);
}

.darkBreak__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.darkBreak__inner p {
  margin: 0 0 11px;
  color: #78d0df;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.darkBreak__inner h2 {
  margin: 0;
  font-size: clamp(27px, 3.3vw, 41px);
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.darkBreak__actions,
.finalCta__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

/* Feature stories */
.features {
  overflow: hidden;
}

.featureStory {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
  padding: 85px 0;
  border-top: 1px solid var(--line);
}

.featureStory--reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.featureStory--reverse .featureStory__copy {
  order: 2;
}

.featureStory__number {
  margin: 0 0 14px;
  color: var(--pink);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.featureStory__copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.featureStory__lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.checkList {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.checkList li {
  position: relative;
  padding-left: 30px;
  color: #33485b;
  font-size: 14px;
  font-weight: 700;
}

.checkList li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 17px;
  height: 9px;
  border-bottom: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.productVisual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  margin: 0;
}

.productVisual__backdrop {
  position: absolute;
  inset: 7% 3% 3% 11%;
  background: linear-gradient(145deg, #dff4f8, #edf7f8);
  border-radius: 4px 70px 4px 70px;
}

.productVisual--left .productVisual__backdrop {
  inset: 5% 12% 2% 2%;
  background: linear-gradient(145deg, #fff0f4, #f8f4ec);
  border-radius: 70px 4px 70px 4px;
}

.productVisual__window,
.productVisual__phone {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--white);
  border: 9px solid var(--white);
  box-shadow: var(--shadow-md);
}

.productVisual__window {
  width: 92%;
  min-height: 320px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  transform: rotate(1.5deg);
}

.productVisual__phone {
  width: min(310px, 58%);
  min-height: 390px;
  display: grid;
  place-items: center;
  border-width: 12px;
  border-radius: 30px;
  transform: rotate(-2deg);
}

.productVisual__window::before,
.productVisual__phone::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  height: 24px;
  background: #edf3f5;
}

.productVisual__phone::before {
  right: 35%;
  left: 35%;
  height: 15px;
  border-radius: 0 0 10px 10px;
}

.productVisual__window img,
.productVisual__phone img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.productVisual__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding-top: 22px;
  color: var(--blue-dark);
  background:
    linear-gradient(rgba(43, 158, 193, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 158, 193, 0.07) 1px, transparent 1px),
    #f7fbfc;
  background-size: 32px 32px;
  font-size: 14px;
  font-weight: 800;
}

.productVisual figcaption {
  position: absolute;
  right: 0;
  bottom: 8px;
  z-index: 3;
  padding: 9px 14px;
  color: var(--white);
  background: var(--navy);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.productVisual--left figcaption {
  right: auto;
  left: 0;
}

.featureTiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px 42px 4px 42px;
}

.featureTiles article {
  position: relative;
  min-height: 260px;
  padding: 42px 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.featureTiles article:first-child {
  border-left: 0;
}

.featureTiles article > span {
  color: #79d4e2;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
}

.featureTiles h3 {
  margin: 24px 0 12px;
  font-size: 19px;
}

.featureTiles p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 2;
}

/* Steps */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 92px;
  right: 16%;
  left: 16%;
  height: 1px;
  border-top: 1px dashed rgba(43, 158, 193, 0.4);
}

.step {
  position: relative;
  min-height: 345px;
  padding: 36px 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(43, 158, 193, 0.12);
  border-radius: 4px 34px 4px 34px;
  box-shadow: var(--shadow-sm);
}

.step__number {
  display: block;
  margin-bottom: 19px;
  color: var(--pink);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.step__icon {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(43, 158, 193, 0.2);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(43, 158, 193, 0.1);
}

.step__icon svg {
  width: 39px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.step h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
}

.step p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
}

/* Pricing */
.pricing {
  background:
    radial-gradient(circle at 10% 15%, rgba(43, 158, 193, 0.08), transparent 28%),
    var(--white);
}

.priceCard {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(11, 35, 64, 0.12);
  border-radius: 4px 48px 4px 48px;
  box-shadow: var(--shadow-md);
}

.priceCard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 28px 48px;
  color: var(--white);
  background: var(--navy);
}

.priceCard__header p {
  margin: 0 0 3px;
  color: #78d1df;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.priceCard__header h3 {
  margin: 0;
  font-size: 22px;
}

.priceCard__header > span {
  padding: 9px 17px;
  color: var(--navy);
  background: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.priceCard__body {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  padding: 52px 58px 45px;
}

.priceCard__main {
  padding-right: 45px;
  border-right: 1px solid var(--line);
}

.priceCard__main > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.priceCard__main > strong {
  color: var(--navy);
  font-size: 18px;
}

.priceCard__main > strong span {
  margin-right: 5px;
  font-family: var(--font-en);
  font-size: 57px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.priceCard__plus {
  margin-top: 16px;
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 800;
}

.priceCard__plus small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.priceCard__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  padding-left: 46px;
}

.checkList--compact {
  gap: 10px;
  margin: 0;
}

.checkList--compact li {
  padding-left: 25px;
  font-size: 12px;
}

.priceExamples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 48px;
  background: var(--blue-pale);
  border: 1px solid rgba(43, 158, 193, 0.12);
}

.priceExamples div {
  padding: 18px 20px;
  text-align: center;
  border-left: 1px solid rgba(43, 158, 193, 0.16);
}

.priceExamples div:first-child {
  border-left: 0;
}

.priceExamples span,
.priceExamples strong {
  display: block;
}

.priceExamples span {
  color: var(--muted);
  font-size: 10px;
}

.priceExamples strong {
  margin-top: 3px;
  color: var(--navy);
  font-size: 14px;
}

.priceCard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 48px 43px;
}

.priceCard__footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.9;
}

.priceCard__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.optionNote {
  max-width: 960px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 20px auto 0;
  padding: 22px 30px;
  background: var(--ivory-light);
  border: 1px solid rgba(11, 35, 64, 0.08);
}

.optionNote > span {
  color: var(--pink);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.optionNote div strong,
.optionNote div p {
  display: block;
  margin: 0;
}

.optionNote div strong {
  font-size: 14px;
}

.optionNote div p {
  color: var(--muted);
  font-size: 11px;
}

.optionNote > strong {
  color: var(--navy);
  font-family: var(--font-en);
  font-size: 22px;
}

.optionNote > strong small {
  font-family: var(--font-jp);
  font-size: 10px;
}

/* FAQ */
.faqLayout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 90px;
}

.faqLayout .sectionHeading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.inlineLink {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  padding-bottom: 5px;
  color: var(--blue-dark);
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.faqList {
  border-top: 1px solid rgba(11, 35, 64, 0.16);
}

.faqList details {
  border-bottom: 1px solid rgba(11, 35, 64, 0.16);
}

.faqList summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 28px 55px 28px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

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

.faqList summary::before,
.faqList summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 18px;
  height: 2px;
  background: var(--blue-dark);
  transition: transform 0.25s ease;
}

.faqList summary::after {
  transform: rotate(90deg);
}

.faqList details[open] summary::after {
  transform: rotate(0);
}

.faqList summary span,
.faqList details > div > span {
  flex: 0 0 auto;
  color: var(--blue-dark);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
}

.faqList details > div {
  display: flex;
  gap: 20px;
  padding: 0 55px 30px 0;
}

.faqList details > div > span {
  color: var(--pink);
}

.faqList details p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

/* Final CTA */
.finalCta {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: var(--white);
  background: linear-gradient(140deg, var(--navy-deep), var(--navy-soft));
}

.finalCta__shape {
  position: absolute;
  border-radius: 50%;
}

.finalCta__shape--one {
  top: -170px;
  right: -80px;
  width: 470px;
  height: 310px;
  border: 1px solid rgba(117, 207, 223, 0.18);
  transform: rotate(-20deg);
}

.finalCta__shape--two {
  bottom: -190px;
  left: -70px;
  width: 520px;
  height: 300px;
  background: rgba(43, 158, 193, 0.1);
  transform: rotate(15deg);
}

.finalCta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.finalCta__inner > p:first-child {
  margin: 0 0 15px;
  color: #7bd1df;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.finalCta h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 49px);
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.finalCta__lead {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.finalCta__actions {
  justify-content: center;
  margin-top: 35px;
}

/* Footer */
.footer {
  padding: 76px 0 25px;
  color: rgba(255, 255, 255, 0.72);
  background: #061321;
}

.footer__top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  padding-bottom: 55px;
}

.brand--footer .brand__text strong {
  color: var(--white);
}

.brand--footer .brand__text small {
  color: rgba(255, 255, 255, 0.42);
}

.footer__brandBlock > p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

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

.footer__nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer__nav strong {
  margin-bottom: 7px;
  color: #77cede;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.footer__nav a {
  font-size: 11px;
  transition: color 0.2s ease;
}

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

.footer__company {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__company > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
}

.footer__company strong {
  color: var(--white);
  font-size: 11px;
}

.footer__company span,
.footer__company a {
  font-size: 10px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom small,
.footer__bottom a {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.12em;
}

/* =========================================================
   Application page
   ========================================================= */
.applyPage {
  background: var(--ivory-light);
}

.applyHero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 105px;
  background:
    radial-gradient(circle at 90% 15%, rgba(43, 158, 193, 0.14), transparent 27%),
    linear-gradient(135deg, #f6fbfc, var(--white));
}

.applyHero::after {
  content: "APPLICATION";
  position: absolute;
  right: -20px;
  bottom: -30px;
  color: rgba(11, 35, 64, 0.026);
  font-family: var(--font-en);
  font-size: clamp(100px, 16vw, 230px);
  font-weight: 700;
  line-height: 1;
}

.applyHero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 75px;
}

.applyHero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4.1vw, 55px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.05em;
}

.applyHero__copy > p:not(.eyebrow) {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.applyHero__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 27px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.applyHero__price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.applyHero__price strong {
  color: var(--navy);
  font-family: var(--font-en);
  font-size: 23px;
}

.applyHero__price i {
  color: var(--pink);
  font-style: normal;
  font-weight: 800;
}

.applyChoices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.applyChoice {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 38px 32px 31px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 3px 35px 3px 35px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.applyChoice:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.applyChoice--trial {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.applyChoice__index {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(11, 35, 64, 0.08);
  font-family: var(--font-en);
  font-size: 59px;
  font-weight: 700;
  line-height: 1;
}

.applyChoice--trial .applyChoice__index {
  color: rgba(255, 255, 255, 0.07);
}

.applyChoice > small {
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 700;
}

.applyChoice--trial > small {
  color: #7ed4e2;
}

.applyChoice h2 {
  margin: 26px 0 13px;
  color: var(--navy);
  font-size: 27px;
}

.applyChoice--trial h2 {
  color: var(--white);
}

.applyChoice p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.95;
}

.applyChoice--trial p {
  color: rgba(255, 255, 255, 0.6);
}

.applyChoice > strong {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue-dark);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.applyChoice--trial > strong {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.formSection {
  padding: 125px 0;
  background: var(--ivory-light);
}

.formSection--trial {
  background: var(--blue-pale);
}

.formSection__layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: clamp(55px, 8vw, 105px);
}

.formIntro {
  position: sticky;
  top: 120px;
}

.formIntro__number {
  display: block;
  margin-bottom: 25px;
  color: rgba(11, 35, 64, 0.09);
  font-family: var(--font-en);
  font-size: 84px;
  font-weight: 700;
  line-height: 1;
}

.formIntro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.formIntro > p:not(.sectionHeading__en) {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.formIntro__notice {
  margin-top: 32px;
  padding: 23px 24px;
  background: var(--blue-pale);
  border-left: 3px solid var(--blue);
}

.formIntro__notice--trial {
  background: var(--pink-pale);
  border-color: var(--pink);
}

.formIntro__notice strong {
  color: var(--navy);
  font-size: 13px;
}

.formIntro__notice p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

.trialPromises {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  background: rgba(11, 35, 64, 0.1);
  border: 1px solid rgba(11, 35, 64, 0.1);
}

.trialPromises div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.82);
}

.trialPromises strong {
  color: var(--blue-dark);
  font-size: 13px;
}

.trialPromises span {
  color: var(--muted);
  font-size: 10px;
}

.formCard {
  padding: 42px 46px 48px;
  background: var(--white);
  border: 1px solid rgba(11, 35, 64, 0.1);
  border-radius: 4px 42px 4px 42px;
  box-shadow: var(--shadow-md);
}

.formCard--trial {
  border-color: rgba(43, 158, 193, 0.18);
}

.formCard__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 31px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.formCard__head > span {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 700;
}

.formCard__head p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.formCard__head i,
.field__label i {
  margin-right: 3px;
  padding: 3px 6px;
  color: var(--white);
  background: var(--pink);
  border-radius: 2px;
  font-size: 8px;
  font-style: normal;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 18px;
}

.full {
  grid-column: 1 / -1;
}

.field {
  display: block;
}

.field__label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.field__label small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d5dfe5;
  border-radius: 3px;
  color: var(--ink);
  background: #fbfcfd;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input {
  height: 53px;
  padding: 0 15px;
}

.field textarea {
  min-height: 110px;
  padding: 14px 15px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a5b0b9;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(43, 158, 193, 0.11);
}

.field input[aria-invalid="true"] {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(233, 102, 134, 0.1);
}

.topicField,
.optionField {
  min-width: 0;
  margin: 5px 0 0;
  padding: 23px 24px;
  border: 1px solid var(--line);
}

.topicField legend,
.optionField legend {
  padding: 0 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.topicField legend small,
.optionField legend small {
  margin-left: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

.topicGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.topicGrid label {
  position: relative;
  cursor: pointer;
}

.topicGrid input {
  position: absolute;
  opacity: 0;
}

.topicGrid span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 35px;
  color: #4c5c6b;
  background: #f8fafb;
  border: 1px solid #e2e8ec;
  font-size: 10px;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.topicGrid span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 1px solid #b8c4cc;
  transform: translateY(-50%);
}

.topicGrid input:checked + span {
  color: var(--blue-dark);
  background: var(--blue-pale);
  border-color: rgba(43, 158, 193, 0.36);
}

.topicGrid input:checked + span::before {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: inset 0 0 0 3px var(--white);
}

.topicGrid input:focus-visible + span {
  outline: 3px solid rgba(43, 158, 193, 0.28);
  outline-offset: 2px;
}

.otherField {
  margin-top: 18px;
}

.agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 27px;
  color: var(--muted);
  font-size: 10px;
  cursor: pointer;
}

.agreement input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.agreement a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__actions {
  margin-top: 28px;
  text-align: center;
}

.form__actions .button {
  width: min(100%, 410px);
  border: 0;
}

.form__actions > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.form__result {
  display: none;
  margin-top: 17px;
  padding: 13px 15px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.form__result.ok,
.form__result.ng {
  display: block;
}

.form__result.ok {
  color: #146646;
  background: #eaf8f1;
  border: 1px solid #b8e5ce;
}

.form__result.ng {
  color: #a2344f;
  background: var(--pink-pale);
  border: 1px solid #f1bdca;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.formDivider {
  color: var(--white);
  background: var(--navy);
}

.formDivider__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
}

.formDivider p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.formDivider a {
  display: flex;
  gap: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
}

.planBox,
.paymentBox {
  padding: 25px;
  background: var(--blue-pale);
  border: 1px solid rgba(43, 158, 193, 0.18);
}

.planBox__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(43, 158, 193, 0.16);
}

.planBox__head span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.planBox__head small {
  padding: 5px 9px;
  color: var(--white);
  background: var(--pink);
  font-size: 8px;
}

.planBox__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px 10px;
  margin-top: 19px;
}

.planBox__price span {
  color: var(--muted);
  font-size: 10px;
}

.planBox__price strong {
  color: var(--navy);
  font-size: 18px;
}

.planBox__price i {
  color: var(--pink);
  font-style: normal;
}

.planBox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 15px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 9px;
}

.planBox li::before {
  content: "✓";
  margin-right: 5px;
  color: var(--blue);
  font-weight: 800;
}

.optionGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.optionCard {
  position: relative;
  cursor: pointer;
}

.optionCard > input {
  position: absolute;
  opacity: 0;
}

.optionCard > span {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  padding: 17px;
  background: #f8fafb;
  border: 1px solid #dce4e8;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.optionCard strong {
  color: var(--navy);
  font-size: 11px;
}

.optionCard small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.7;
}

.optionCard i {
  display: none;
  align-self: flex-end;
  margin-top: auto;
  color: var(--blue-dark);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.optionCard input:checked + span {
  background: var(--blue-pale);
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
}

.optionCard input:checked + span i {
  display: block;
}

.optionCard input:focus-visible + span {
  outline: 3px solid rgba(43, 158, 193, 0.25);
  outline-offset: 2px;
}

.paymentBox > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.paymentBox > div > span {
  color: var(--blue-dark);
  font-size: 9px;
  font-weight: 700;
}

.paymentBox > div > strong {
  color: var(--navy);
  font-size: 13px;
}

.paymentBox > p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 9px;
}

.successModal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.successModal.isOpen {
  visibility: visible;
  opacity: 1;
}

.successModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 19, 33, 0.68);
  backdrop-filter: blur(8px);
}

.successModal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 570px);
  padding: 50px 45px;
  text-align: center;
  background: var(--white);
  border-radius: 4px 40px 4px 40px;
  box-shadow: var(--shadow-lg);
}

.successModal__icon {
  width: 63px;
  height: 63px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 26px;
}

.successModal__panel > p {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.successModal h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.successModal__description {
  margin: 13px 0 25px;
  color: var(--muted);
  font-size: 12px;
}

/* Reveal motion */
.revealReady [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.revealReady [data-reveal].isVisible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  :root { --header-height: 72px; }

  .desktopNav { display: none; }

  .siteHeader__actions { margin-left: auto; }

  .menuButton {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: 2px;
    padding: 0;
    color: var(--navy);
    background: transparent;
    border: 1px solid rgba(11, 35, 64, 0.15);
    border-radius: 50%;
  }

  .menuButton span {
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menuButton[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menuButton[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menuButton[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobileNav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 27px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(11, 35, 64, 0.07);
    box-shadow: 0 25px 45px rgba(11, 35, 64, 0.13);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .mobileNav.isOpen {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobileNav > a:not(.button) {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
  }

  .mobileNav .button { margin-top: 17px; }

  .hero { min-height: auto; }

  .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 45px;
  }

  .hero h1 { font-size: clamp(38px, 5.2vw, 56px); }

  .hero__lead br { display: none; }

  .hero__meta > div { min-width: 160px; padding: 0 20px; }

  .heroPhoto__frame { height: 510px; }

  .conceptStatement { grid-template-columns: 90px 1fr; }
  .conceptStatement > p { grid-column: 2; }

  .darkBreak__inner { align-items: flex-start; flex-direction: column; }

  .featureStory { gap: 55px; }

  .priceCard__body { padding-inline: 42px; }

  .footer__top { gap: 55px; }

  .applyHero__grid { gap: 45px; }

  .formSection__layout { gap: 55px; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 38px), var(--container)); }

  .section { padding: 90px 0; }

  .hero {
    padding-top: 55px;
    padding-bottom: 100px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero__content { max-width: 700px; }

  .hero__lead br { display: block; }

  .heroPhoto { width: min(100%, 650px); margin-left: auto; }
  .heroPhoto__frame { height: 520px; }

  .quickFacts__grid { grid-template-columns: 1fr; padding: 15px 0 35px; }

  .quickFact {
    min-height: 72px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .quickFact:first-child { border-top: 0; }

  .challengeGrid { grid-template-columns: 1fr; }
  .challengeCard { min-height: 0; }
  .challengeCard:nth-child(2) { margin-top: 0; }

  .conceptStatement {
    grid-template-columns: 80px 1fr;
    padding: 43px 38px;
  }

  .featureStory,
  .featureStory--reverse {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .featureStory--reverse .featureStory__copy { order: 0; }

  .productVisual { min-height: 390px; }

  .featureTiles { grid-template-columns: 1fr; }
  .featureTiles article { min-height: 0; border-top: 1px solid rgba(255, 255, 255, 0.13); border-left: 0; }
  .featureTiles article:first-child { border-top: 0; }

  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { min-height: 0; }

  .priceCard__body { grid-template-columns: 1fr; gap: 35px; }
  .priceCard__main { padding-right: 0; padding-bottom: 35px; border-right: 0; border-bottom: 1px solid var(--line); text-align: center; }
  .priceCard__features { padding-left: 0; }
  .priceCard__footer { align-items: flex-start; flex-direction: column; }

  .faqLayout { grid-template-columns: 1fr; gap: 45px; }
  .faqLayout .sectionHeading { position: static; }

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

  .applyHero__grid { grid-template-columns: 1fr; }
  .applyHero__copy { max-width: 650px; }

  .formSection__layout { grid-template-columns: 1fr; }
  .formIntro { position: static; max-width: 650px; }
  .trialPromises { grid-template-columns: repeat(3, 1fr); }
  .trialPromises div { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  :root { --header-height: 66px; }

  body { font-size: 15px; }

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

  .siteHeader__inner { gap: 10px; }

  .brand { gap: 8px; }
  .brand__mark { width: 37px; height: 37px; border-radius: 10px; }
  .brand__text strong { font-size: 18px; }
  .brand__text small { font-size: 6px; margin-top: 5px; }

  .siteHeader__actions { display: none; }
  .menuButton { margin-left: auto; }

  .button { width: 100%; gap: 14px; }
  .button--large { min-height: 57px; padding: 15px 23px; font-size: 14px; }

  .section { padding: 76px 0; }
  .sectionHeading { margin-bottom: 42px; }
  .sectionHeading h2 { font-size: 29px; line-height: 1.5; }
  .sectionHeading > p:last-child { font-size: 12px; line-height: 1.9; }

  .hero {
    padding-top: 45px;
    padding-bottom: 92px;
  }

  .hero::after { bottom: -170px; height: 205px; }

  .hero__grid { gap: 45px; }
  .eyebrow { margin-bottom: 17px; font-size: 10px; }
  .eyebrow span { width: 21px; }
  .hero h1 { font-size: clamp(33px, 10.6vw, 45px); line-height: 1.42; }
  .hero__mobileBreak { display: block; }
  .hero__lead { margin-top: 20px; font-size: 13px; line-height: 2; }
  .hero__lead br { display: none; }
  .hero__actions { flex-direction: column; margin-top: 27px; }

  .hero__meta { margin-top: 29px; }
  .hero__meta > div { min-width: 0; flex: 1; padding: 0 14px; }
  .hero__meta strong { font-size: 25px; }
  .hero__meta p { font-size: 8px; line-height: 1.5; }

  .heroPhoto { padding: 10px 6px 45px 0; }
  .heroPhoto::before { top: -12px; right: -14px; border-radius: 0 0 0 65px; }
  .heroPhoto__frame { height: min(108vw, 455px); border-radius: 3px 47px 3px 47px; }
  .heroPhoto__label { right: -2px; width: 90%; padding: 14px; gap: 11px; }
  .heroPhoto__labelIcon { width: 38px; height: 38px; }
  .heroPhoto__label strong { font-size: 10px; }
  .heroPhoto__caption { display: none; }
  .hero__scroll { bottom: 25px; }

  .quickFacts__grid { padding-bottom: 28px; }
  .quickFact { gap: 14px; }
  .quickFact strong { font-size: 12px; }

  .challengeCard { padding: 34px 26px 29px; border-radius: 3px 28px 3px 28px; }
  .challengeCard h3 { font-size: 18px; }

  .conceptStatement {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-top: 55px;
    padding: 35px 27px;
    border-radius: 3px 38px 3px 38px;
  }
  .conceptStatement__mark { width: 64px; height: 64px; font-size: 27px; }
  .conceptStatement h3 { font-size: 22px; }
  .conceptStatement > p { grid-column: auto; font-size: 11px; }

  .darkBreak { padding: 67px 0; }
  .darkBreak__inner h2 { font-size: 25px; }
  .darkBreak__actions { width: 100%; flex-direction: column; }

  .featureStory { padding: 60px 0; }
  .featureStory__copy h3 { font-size: 25px; }
  .featureStory__lead { font-size: 12px; }
  .checkList li { font-size: 12px; }
  .productVisual { min-height: 315px; }
  .productVisual__window { min-height: 230px; }
  .productVisual__phone { min-height: 305px; width: min(250px, 68%); }

  .featureTiles { border-radius: 3px 30px 3px 30px; }
  .featureTiles article { padding: 32px 27px; }

  .step { padding: 31px 25px; }

  .priceCard { border-radius: 3px 32px 3px 32px; }
  .priceCard__header { align-items: flex-start; padding: 23px 24px; }
  .priceCard__header h3 { font-size: 18px; }
  .priceCard__header > span { font-size: 9px; }
  .priceCard__body { padding: 34px 24px; }
  .priceCard__main > strong span { font-size: 48px; }
  .priceCard__features { grid-template-columns: 1fr; }
  .priceExamples { grid-template-columns: 1fr; margin: 0 24px; }
  .priceExamples div { border-top: 1px solid rgba(43, 158, 193, 0.16); border-left: 0; }
  .priceExamples div:first-child { border-top: 0; }
  .priceCard__footer { padding: 28px 24px 34px; }
  .priceCard__actions { width: 100%; flex-direction: column; }
  .optionNote { grid-template-columns: 1fr; gap: 8px; padding: 20px 22px; }

  .faqList summary { padding-block: 23px; padding-right: 42px; font-size: 13px; }
  .faqList details > div { padding-right: 10px; }

  .finalCta { padding: 82px 0; }
  .finalCta h2 { font-size: 28px; }
  .finalCta__actions { flex-direction: column; }

  .footer { padding-top: 58px; }
  .footer__top { gap: 45px; }
  .footer__nav { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer__company { flex-direction: column; }
  .footer__company > div { flex-direction: column; gap: 6px; }

  .applyHero { padding: 67px 0 76px; }
  .applyHero h1 { font-size: 33px; }
  .applyHero__grid { gap: 42px; }
  .applyChoices { grid-template-columns: 1fr; }
  .applyChoice { min-height: 290px; padding: 30px 27px; }

  .formSection { padding: 78px 0; }
  .formIntro__number { margin-bottom: 18px; font-size: 64px; }
  .formIntro h2 { font-size: 31px; }
  .trialPromises { grid-template-columns: 1fr; }
  .trialPromises div { align-items: center; flex-direction: row; }

  .formCard { padding: 30px 20px 35px; border-radius: 3px 30px 3px 30px; }
  .formCard__head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .form__grid { grid-template-columns: 1fr; gap: 21px; }
  .full { grid-column: auto; }
  .topicField, .optionField { padding: 18px 14px; }
  .topicGrid, .optionGrid { grid-template-columns: 1fr; }
  .planBox, .paymentBox { padding: 20px 16px; }
  .planBox__head { align-items: flex-start; flex-direction: column; }

  .formDivider__inner { min-height: 120px; flex-direction: column; gap: 10px; text-align: center; }

  .successModal__panel { padding: 40px 23px; }
}

@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; }
  [data-reveal] { opacity: 1; transform: none; }
}
