@charset "UTF-8";

:root {
  --ink: #f5f8ff;
  --muted: #9caac1;
  --deep: #020713;
  --navy: #061224;
  --panel: #07172c;
  --panel-2: #0a1d37;
  --blue: #0878ff;
  --blue-2: #19b8ff;
  --line: rgba(61, 162, 255, .42);
  --line-soft: rgba(116, 187, 255, .16);
  --shell-width: 430px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--deep);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 104, 255, .16), transparent 34%),
    #020713;
  font-family: "Helvetica Neue", "Yu Gothic", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(6, 45, 83, .17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 45, 83, .17) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(600px) rotateX(54deg) scale(1.7) translateY(20%);
  transform-origin: center bottom;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(118deg, transparent 0 24%, rgba(0, 127, 255, .18) 24.15%, transparent 24.3%),
    linear-gradient(62deg, transparent 0 75%, rgba(25, 184, 255, .12) 75.15%, transparent 75.3%),
    radial-gradient(circle at 12% 36%, rgba(0, 133, 255, .15) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 68%, rgba(0, 133, 255, .14) 0 1px, transparent 2px);
  background-size: auto, auto, 11px 11px, 14px 14px;
  pointer-events: none;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

.desktop-scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.desktop-scene::before,
.desktop-scene::after {
  content: "";
  position: absolute;
  top: 18%;
  width: min(24vw, 340px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(25, 184, 255, .7), transparent);
  box-shadow: 0 220px rgba(25, 184, 255, .28), 0 440px rgba(25, 184, 255, .18);
}

.desktop-scene::before {
  left: 5%;
  transform: rotate(18deg);
}

.desktop-scene::after {
  right: 5%;
  transform: rotate(-18deg);
}

.side-copy {
  position: fixed;
  top: 50%;
  color: rgba(116, 187, 255, .3);
  font: 700 10px/1 "Roboto Condensed", sans-serif;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.side-copy--left {
  left: calc(50% - 286px);
}

.side-copy--right {
  right: calc(50% - 286px);
}

.site-shell {
  position: relative;
  width: min(100%, var(--shell-width));
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: clip;
  background: var(--deep);
  box-shadow:
    0 0 0 1px rgba(71, 166, 255, .24),
    0 0 70px rgba(0, 0, 0, .68);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 200;
  width: min(100%, var(--shell-width));
  height: 2px;
  transform: translateX(-50%);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 12px var(--blue-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 18px;
  background: rgba(2, 7, 19, .82);
  border-bottom: 1px solid rgba(89, 171, 255, .24);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: #fff;
  text-decoration: none;
}

.brand strong {
  font: 800 15px/1 "Roboto Condensed", sans-serif;
  letter-spacing: .08em;
}

.brand span {
  margin-top: 5px;
  color: var(--blue-2);
  font: 700 8px/1 "Roboto Condensed", sans-serif;
  letter-spacing: .28em;
}

.menu {
  position: relative;
}

.menu summary {
  display: grid;
  align-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 8px;
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(94, 174, 255, .35);
}

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

.menu summary i {
  display: block;
  height: 1px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.menu[open] summary i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu[open] summary i:nth-child(2) {
  opacity: 0;
}

.menu[open] summary i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu nav {
  position: absolute;
  top: 52px;
  right: 0;
  width: 272px;
  padding: 8px;
  background: rgba(4, 14, 30, .97);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
}

.menu nav a {
  display: block;
  padding: 13px 14px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
color: #fff;
}

.menu nav a:last-child {
  color: #fff;
  background: linear-gradient(90deg, #0767ee, #079df0);
  border: 0;
}

.hero {
  position: relative;
  padding-bottom: 60px;
  overflow: hidden;
  background: #020713;
}

.hero-grid {
  position: absolute;
  inset: 340px -180px auto;
  z-index: 2;
  height: 320px;
  opacity: .7;
  background:
    linear-gradient(rgba(0, 119, 255, .24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 119, 255, .24) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: perspective(400px) rotateX(58deg);
  transform-origin: center top;
  pointer-events: none;
}

.hero-visual {
  position: relative;
  height: 610px;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(120deg, transparent 26%, rgba(0, 128, 255, .65) 26.2%, transparent 26.5%),
    linear-gradient(72deg, transparent 70%, rgba(25, 184, 255, .5) 70.2%, transparent 70.5%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 19, .98) 2%, rgba(2, 7, 19, .72) 35%, transparent 74%),
    linear-gradient(0deg, #020713 0%, transparent 42%),
    linear-gradient(180deg, rgba(2, 7, 19, .2), transparent 25%);
}

.hero-content {
  position: relative;
  z-index: 4;
  margin-top: -557px;
  padding: 0 24px 64px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.eyebrow span,
.eyebrow b {
  padding: 5px 8px;
  font-size: 9px;
  letter-spacing: .08em;
}

.eyebrow span {
  color: #fff;
  background: var(--blue);
}

.eyebrow b {
  border: 1px solid rgba(121, 192, 255, .58);
}

.hero h1,
.section-header h2,
.honest-visual h2,
.meeting-content h2 {
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.22;
}

.hero h1 {
  font-size: clamp(42px, 12.2vw, 45px);
  text-shadow: 0 6px 24px rgba(0, 0, 0, .45);
}

em {
  color: var(--blue);
  font-style: normal;
  text-shadow: 0 0 24px rgba(0, 120, 255, .35);
}

.hero-sub {
  margin-top: 17px;
  font-size: 17px;
  font-weight: 800;
}

.hero-text {
  max-width: 345px;
  margin-top: 16px;
  color: #c6d1e1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.85;
}

.primary-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  margin-top: 26px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(100deg, #0758e8, #067efa 55%, #11a9ff);
  border: 1px solid rgba(164, 215, 255, .72);
  box-shadow: 0 12px 32px rgba(0, 105, 255, .32), inset 0 1px rgba(255, 255, 255, .2);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 105, 255, .42), inset 0 1px rgba(255, 255, 255, .2);
}

.primary-button span {
  font-size: 23px;
}

.hero-stats {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 14px;
  background: rgba(5, 20, 40, .94);
  border: 1px solid var(--line);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .38), 0 0 28px rgba(0, 119, 255, .1);
}

.hero-stats > div {
  min-width: 0;
  padding: 18px 5px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.hero-stats > div:last-child {
  border: 0;
}

.hero-stats small {
  display: block;
  color: #c4d6ee;
  font-size: 15px;
  font-weight: 700;
}

.hero-stats strong {
  display: block;
  margin-top: 8px;
  color: #5db5ff;
  font: 800 39px/1 "Roboto Condensed", sans-serif;
}

.hero-stats strong span {
  font-size: 15px;
}

.hero-stats .word-value {
  padding-top: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
}

.section {
  position: relative;
  padding: 96px 24px;
  border-top: 1px solid var(--line-soft);
}

.section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  width: 74px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}

.section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.section-code {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #5cb4ff;
  font: 800 17px/1 "Roboto Condensed", sans-serif;
  letter-spacing: .2em;
}

.section-code span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  background: var(--blue);
  letter-spacing: 0;
}

.section-header h2,
.honest-visual h2,
.meeting-content h2 {
  font-size: clamp(31px, 9.4vw, 33px);
}

.section-header > p:last-child {
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: bold;
  line-height: 1.9;
}

.fine-print {
  margin-top: 24px;
  color: #718198;
  font-size: 9px;
  line-height: 1.65;
}

.data-section {
  background:
    linear-gradient(150deg, rgba(10, 75, 143, .08), transparent 42%),
    var(--deep);
}

.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.data-grid article {
  min-height: 136px;
  padding: 16px 13px;
  background: linear-gradient(145deg, rgba(9, 31, 57, .88), rgba(4, 14, 28, .86));
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.data-grid small {
  color: #adc1da;
  font-size: 9px;
  font-weight: 700;
}

.data-grid strong {
  display: block;
  margin-top: 8px;
  color: #67b9ff;
  font: 800 27px/1.15 "Roboto Condensed", "Noto Sans JP", sans-serif;
}

.data-grid p {
  margin-top: 10px;
  color: #7f8fa6;
    font-size: 12px;
    font-weight: bold;
}

.mind-section {
  background:
    radial-gradient(circle at 100% 30%, rgba(0, 101, 255, .13), transparent 30%),
    #030916;
}

.mind-list {
  display: grid;
  gap: 22px;
}

.mind-card {
  position: relative;
  min-height: 330px;
  padding: 62px 22px 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(9, 34, 65, .96), rgba(3, 12, 26, .96)),
    var(--panel);
  border: 1px solid var(--line);
}

.mind-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(38, 146, 255, .22);
  transform: rotate(28deg);
}

.mind-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -60px;
  width: 200px;
  height: 160px;
  background: linear-gradient(125deg, transparent 48%, rgba(0, 122, 255, .2) 49%, transparent 50%);
}

.card-no {
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(74, 169, 255, .35);
  font: italic 800 58px/1 "Roboto Condensed", sans-serif;
}

.card-en {
  position: relative;
  color: var(--blue-2);
  font: 700 9px/1 "Roboto Condensed", sans-serif;
  letter-spacing: .18em;
}

.mind-card h3 {
  position: relative;
  margin-top: 15px;
  font-size: 24px;
  line-height: 1.4;
}

.mind-card > p:not(.card-en) {
  position: relative;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: bold;
}

.mind-card strong {
  position: relative;
  display: block;
  margin-top: 22px;
  padding-top: 14px;
  color: #fff;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.career-section {
  background:
    linear-gradient(180deg, #061329, #020713 38%),
    var(--deep);
}

.story-list {
  display: grid;
  gap: 30px;
}

.story-card {
  overflow: hidden;
  background: #061326;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.story-photo {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #061326 0%, transparent 48%);
}

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

.story-copy {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  padding: 0 20px 22px;
}

.story-name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}

.story-name b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--blue);
  font: 800 24px/1 "Roboto Condensed", sans-serif;
}

.story-name span {
  color: #9badc6;
  font-size: 11px;
}

.story-role {
  margin-top: 8px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 700;
}

.story-copy dl {
  margin-top: 18px;
}

.story-copy dl div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
}

.story-copy dt {
  color: #58b2ff;
  font: 800 12px/1.6 "Roboto Condensed", sans-serif;
  letter-spacing: .1em;
}

.story-copy dd {
  color: #aab8ca;
  font-size: 12px;
}

.income-tag {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 14px;
  padding: 11px 13px;
  background: linear-gradient(90deg, rgba(7, 91, 222, .92), rgba(6, 139, 245, .8));
  font-size: 10px;
}

.income-tag strong {
  font-size: 20px;
}

.work-section {
  background:
    radial-gradient(circle at 20% 38%, rgba(0, 116, 255, .12), transparent 25%),
    #020713;
}

.work-hero,
.training-visual {
  position: relative;
  height: 390px;
  margin: 0 -24px 42px;
  overflow: hidden;
}

.work-hero::after,
.training-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, #020713 0%, transparent 55%),
    linear-gradient(90deg, rgba(2, 7, 19, .82), transparent 65%);
}

.work-hero img,
.training-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-hero > div,
.training-visual > div {
  position: absolute;
  left: 24px;
  bottom: 30px;
  z-index: 2;
}

.work-hero small,
.training-visual small {
  color: var(--blue-2);
  font: 800 9px/1 "Roboto Condensed", sans-serif;
  letter-spacing: .18em;
}

.work-hero strong,
.training-visual strong {
  display: block;
  margin-top: 9px;
  font-size: 27px;
  line-height: 1.4;
}

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

.process-card {
  min-height: 235px;
  padding: 17px 14px;
  background: linear-gradient(150deg, rgba(9, 32, 59, .9), rgba(3, 12, 25, .9));
  border: 1px solid var(--line);
}

.process-card > span {
  display: block;
  color: var(--blue);
  font: italic 800 34px/1 "Roboto Condensed", sans-serif;
}

.process-card small {
  display: block;
  margin-top: 8px;
  color: #7189a7;
  font: 700 8px/1 "Roboto Condensed", sans-serif;
  letter-spacing: .12em;
}

.process-card h3 {
  margin-top: 15px;
  font-size: 18px;
}

.process-card p {
  margin-top: 11px;
  color: #91a1b7;
    font-size: 12px;
    font-weight: bold;
}

.growth-section {
  background:
    linear-gradient(160deg, rgba(3, 67, 128, .18), transparent 36%),
    #031020;
}

.training-visual {
  height: 410px;
}

.training-visual::after {
  background:
    linear-gradient(0deg, #031020 0%, transparent 55%),
    linear-gradient(90deg, rgba(3, 16, 32, .9), transparent 65%);
}

.training-block-heading {
  position: relative;
  margin: 0 0 24px;
  padding: 3px 0 2px 18px;
  border-left: 2px solid var(--blue);
}

.training-block-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  width: 8px;
  height: 8px;
  background: var(--blue-2);
  box-shadow: 0 0 14px rgba(25, 184, 255, .8);
}

.training-block-heading--curriculum {
  margin-top: 54px;
}

.training-label {
  color: #5ab5ff;
  font: 800 9px/1 "Roboto Condensed", sans-serif;
  letter-spacing: .15em;
}

.training-label span {
  display: inline-block;
  margin-right: 8px;
  padding: 5px 7px;
  color: #fff;
  background: var(--blue);
  letter-spacing: .08em;
}

.training-block-heading h3 {
  margin-top: 14px;
  font-size: 23px;
  line-height: 1.45;
}

.training-block-heading h3 em {
  color: #68c4ff;
  font-style: normal;
}

.training-block-heading > p:last-child {
  margin-top: 12px;
  color: #93a6bd;
  font-size: 12px;
  line-height: 1.8;
font-weight: bold;
}

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

.training-cards article {
  min-height: 196px;
  padding: 17px 14px;
  background: rgba(4, 17, 34, .86);
  border: 1px solid var(--line);
}

.training-cards span {
  color: var(--blue);
  font: 800 25px/1 "Roboto Condensed", sans-serif;
}

.training-cards h3 {
  margin-top: 17px;
  font-size: 15px;
}

.training-cards p {
  margin-top: 10px;
  color: #91a2ba;
  font-size: 9px;
}

.curriculum {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.curriculum p {
  min-height: 78px;
  padding: 12px 10px;
  color: #a8b7ca;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.curriculum span {
  display: block;
  color: #4faeff;
  font: 800 16px/1 "Roboto Condensed", sans-serif;
  margin-bottom: 7px;
}

.pay-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 119, 255, .16), transparent 25%),
    #020713;
}

.pay-model {
  border-top: 1px solid var(--line);
}

.pay-model p {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  border-bottom: 1px solid var(--line-soft);
}

.pay-model span {
  color: #8ea1ba;
  font-size: 10px;
  font-weight: 700;
}

.pay-model strong {
  color: #fff;
  font-size: 18px;
  text-align: right;
}

.reward-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 25px;
  border: 1px solid var(--line);
}

.reward-row div {
  min-width: 0;
  padding: 15px 5px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.reward-row div:last-child {
  border: 0;
}

.reward-row small {
  display: block;
  color: #6080a6;
  font: 700 15px/1 "Roboto Condensed", sans-serif;
}

.reward-row strong {
  display: block;
  margin-top: 8px;
  color: #59b4ff;
  font-size: 15px;
}

.sub-heading {
  margin: 70px 0 28px;
  font-size: 22px;
  line-height: 1.5;
}

.sub-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-2);
  font: 800 9px/1 "Roboto Condensed", sans-serif;
  letter-spacing: .16em;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.benefit-grid article {
  display: flex;
    align-items: center;
  flex-direction: column;
  justify-content: space-between;
  min-height: 155px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(7, 29, 56, .92), rgba(3, 13, 28, .92));
  border: 1px solid var(--line);
}

.benefit-grid span {
  color: #3fa7ff;
  font: 800 10px/1 "Roboto Condensed", sans-serif;
  letter-spacing: .12em;
}

.benefit-grid strong {
  font-size: 14px;
  line-height: 1.5;
    text-align: center;
}

.honest-section {
  padding-top: 0;
  background: #030a16;
}

.honest-visual {
  position: relative;
  height: 290px;
  margin: 0 -24px 38px;
  overflow: hidden;
}

.honest-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, #030a16 3%, transparent 58%),
    linear-gradient(90deg, rgba(3, 10, 22, .96), rgba(3, 10, 22, .22));
}

.honest-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.honest-visual > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 46px;
  z-index: 2;
}

.honest-lead {
  color: var(--muted);
  font-size: 12px;
}

.honest-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.honest-grid article {
  padding: 21px 18px;
  background: #061326;
  border: 1px solid var(--line);
}

.honest-grid article:first-child {
  background: linear-gradient(135deg, rgba(12, 32, 58, .95), rgba(3, 12, 25, .95));
}

.honest-grid h3 {
  font-size: 16px;
}

.honest-grid ul {
  margin: 15px 0 0;
  padding-left: 18px;
  color: #9eafc4;
    font-size: 13px;
    font-weight: bold;
}

.honest-grid li + li {
  margin-top: 9px;
}

.business-section {
  background:
    linear-gradient(155deg, rgba(2, 91, 179, .16), transparent 35%),
    #020713;
}

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

.service-card {
  display: grid;
  grid-template-columns: 83px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 180px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(8, 30, 57, .94), rgba(3, 13, 27, .94));
  border: 1px solid var(--line);
}

.service-mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: #7ec7ff;
  background:
    radial-gradient(circle, rgba(0, 119, 255, .25), transparent 68%),
    rgba(4, 16, 34, .8);
  border: 1px solid var(--line);
  font: 800 19px/1 "Roboto Condensed", sans-serif;
  box-shadow: inset 0 0 30px rgba(0, 110, 255, .12);
}

.service-card small {
  color: #3ca8ff;
  font: 800 11px/1 "Roboto Condensed", sans-serif;
  letter-spacing: .12em;
}

.service-card h3 {
  margin-top: 9px;
  font-size: 15px;
  line-height: 1.45;
}

.service-card p {
  margin-top: 9px;
  color: #8fa1b8;
  font-size: 12px;
  font-weight: bold;
}

.meeting-section {
  position: relative;
  min-height: 900px;
  padding: 96px 24px 66px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.meeting-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.meeting-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #020713 0%, rgba(2, 7, 19, .62) 26%, rgba(2, 7, 19, .82) 70%, #020713 100%),
    linear-gradient(90deg, rgba(2, 7, 19, .95), transparent 75%);
}

.meeting-content {
  position: relative;
  z-index: 2;
}

.meeting-content > p:not(.section-code) {
  max-width: 345px;
  margin-top: 24px;
  color: #b1bfd0;
  font-size: 12px;
}

.meeting-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.meeting-points span {
  min-height: 85px;
  padding: 13px 11px;
  color: #8da1ba;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 9px;
}

.meeting-points b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
}

.primary-button--large {
  min-height: 70px;
  margin-top: 30px;
  font-size: 16px;
}

.text-link {
  display: block;
  margin-top: 23px;
  color: #a9c8e8;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.site-footer {
  padding: 42px 24px;
  background: #01040b;
  border-top: 1px solid var(--line-soft);
}

.brand--footer {
  margin-bottom: 24px;
}

.site-footer p {
  color: #7889a1;
  font-size: 10px;
}

.site-footer small {
  display: block;
  margin-top: 20px;
  color: #46536a;
  font-size: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 560px) {
  body::before,
  body::after,
  .desktop-scene {
    display: none;
  }

  .site-shell {
    box-shadow: none;
  }
}

@media (max-width: 360px) {
  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .process-card {
    min-height: 245px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .process-card p {
    font-size: 8px;
  }
}
section {
    background: radial-gradient(circle at 50% 20%, rgba(0, 104, 255, .16), transparent 34%), #020713 !important;
}
section:not(.add_design1):not(.add_design3):not(.add_design5):not(.add_design7) article:last-child {
    border-bottom: 1px solid var(--line) !important;
}
article:nth-last-of-type(1) {
    margin-bottom: 0px !important;
}
.scroll-progress {
    display: none;
}
.benefit-grid span img {
    max-height: 45px;
    width: auto;
}