:root {
  --blue: #0068e8;
  --blue-2: #0099f7;
  --blue-3: #00b7f5;
  --deep: #101522;
  --muted: #5d6878;
  --line: #d8e7fb;
  --pale: #eef7ff;
  --shadow: 0 6px 18px rgba(0, 80, 180, 0.13);
  --font-ja: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  --font-en: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #f2f7ff;
}

body {
  min-width: 817px;
  margin: 0;
  color: var(--deep);
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0;
}

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

img,
svg {
  display: block;
}

button {
  font: inherit;
}

.page {
  position: relative;
  width: 817px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 34px rgba(0, 53, 120, 0.08);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 30px;
  left: 48px;
  right: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  height: 38px;
}

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

.brand-mark {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 27px;
}

.brand-mark span {
  position: absolute;
  display: block;
  width: 14px;
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(135deg, #0e65ef 0%, #00b9ff 100%);
  transform: skewX(-38deg) rotate(40deg);
  box-shadow: inset 0 -5px 8px rgba(0, 31, 150, 0.16);
}

.brand-mark span:nth-child(1) {
  left: 0;
  top: 9px;
}

.brand-mark span:nth-child(2) {
  left: 12px;
  top: 1px;
  background: linear-gradient(135deg, #0aa4ff, #0056e9);
}

.brand-mark span:nth-child(3) {
  right: 0;
  top: 8px;
  background: linear-gradient(135deg, #08c2ff, #0054e8);
}

.brand-name {
  color: #0b0f16;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 37px;
  flex: 1 1 auto;
  min-width: 0;
  color: #111721;
  font-size: 13px;
  white-space: nowrap;
}

.global-nav a {
  transition: color 0.2s ease;
}

.global-nav a:hover {
  color: var(--blue);
}

.contact-button,
.primary-button,
.talk-panel a,
.join a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 163px;
  height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #006dff 0%, #0057d9 100%);
  box-shadow: 0 10px 25px rgba(0, 88, 230, 0.18);
  font-size: 14px;
  font-weight: 800;
}

.contact-button {
  min-width: 132px;
  height: 38px;
  padding-inline: 20px;
  font-size: 12px;
}

.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background:
    linear-gradient(111deg, rgba(255, 255, 255, 0) 0 53%, rgba(235, 248, 255, 0.96) 53% 72%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(circle at 22% 15%, rgba(0, 111, 255, 0.08) 0 1px, transparent 1.5px) 0 0 / 14px 14px,
    linear-gradient(90deg, #fbfdff 0%, #fff 68%, #eef8ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -135px;
  left: 112px;
  width: 308px;
  height: 250px;
  background: rgba(224, 242, 255, 0.58);
  clip-path: polygon(14% 0, 100% 0, 72% 100%, 0 100%);
  transform: rotate(-9deg);
}

.hero::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 0;
  width: 80px;
  height: 438px;
  background: linear-gradient(180deg, #007bff, #005bd8);
  clip-path: polygon(62% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-bg-shape {
  position: absolute;
  pointer-events: none;
}

.shape-one {
  left: 214px;
  bottom: -2px;
  width: 218px;
  height: 216px;
  background: linear-gradient(135deg, rgba(0, 116, 244, 0.92), rgba(38, 183, 255, 0.2));
  clip-path: polygon(79% 0, 100% 0, 34% 100%, 0 100%);
}

.shape-two {
  right: 52px;
  top: 95px;
  width: 229px;
  height: 201px;
  background: rgba(47, 189, 245, 0.78);
  clip-path: polygon(28% 0, 100% 25%, 78% 100%, 0 75%);
  mix-blend-mode: multiply;
}

.hero-shadow-text {
  position: absolute;
  left: -2px;
  bottom: -4px;
  margin: 0;
  color: rgba(0, 112, 235, 0.09);
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 800;
  line-height: 0.92;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  top: 180px;
  left: 72px;
  width: 560px;
}

.hero-copy h1 {
  margin: 0 0 17px;
  color: #111822;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-copy h1 span {
  color: #006ce8;
  font-size: 42px;
}

.hero-copy p {
  margin: 0 0 25px;
  color: #111822;
  font-size: 16px;
  font-weight: 800;
  line-height: 2.05;
}

.hero-visual {
  position: absolute;
  z-index: 3;
  inset: 0;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.partners {
  position: relative;
  display: flex;
  align-items: center;
  gap: 21px;
  height: 104px;
  padding: 0 58px 0 70px;
  border-bottom: 1px solid #d9e8fb;
  background: #fff;
}

.partners::after {
  content: "";
  position: absolute;
  left: 44px;
  bottom: -1px;
  width: 488px;
  height: 1px;
  background: linear-gradient(90deg, #006dff, rgba(0, 109, 255, 0));
}

.partners-label {
  position: relative;
  width: 55px;
  color: #0a2861;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.partners-label::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -19px;
  width: 1px;
  height: 40px;
  background: #bdd5f3;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-logos li {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.partner-logos span {
  display: block;
  margin-top: 1px;
  font-size: 7px;
  font-weight: 700;
}

.quonex {
  color: #071322;
  letter-spacing: 0.02em;
}

.quonex span {
  color: #637086;
  letter-spacing: 0.04em;
}

.aurest { color: #0065b6; }

.cielva {
  color: #ef3f48;
  font-family: Georgia, serif !important;
  font-style: italic;
}

.pixelia {
  color: #001d86;
  letter-spacing: 0.04em;
}

.morphix { color: #111; }

.folioq {
  color: #0054a7;
  font-style: italic;
}

.folioq::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 11px;
  margin-left: 3px;
  background: linear-gradient(135deg, #0054d8 0 58%, transparent 59%);
}

.veltora {
  color: #f45a11;
  font-size: 20px !important;
  letter-spacing: -0.01em;
}

.veltora span { font-size: 5px; }

.lunova {
  color: #0065c7;
  font-weight: 500 !important;
  letter-spacing: 0.05em;
}

.round-next {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid #9fc7ff;
  border-radius: 50%;
  color: #006ce8;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.services {
  position: relative;
  min-height: 308px;
  padding: 38px 86px 46px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.services h2,
.section-row h2 {
  display: flex;
  align-items: center;
  margin: 0;
  color: #101722;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.services h2 {
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.section-line,
.talk-panel div > p {
  display: inline-block;
  width: 8px;
  height: 2px;
  background: var(--blue);
}

.title-stack {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.services .title-stack {
  align-items: center;
}

.title-en {
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.title-ja {
  color: #101722;
  font-family: var(--font-ja);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 240px;
  padding: 28px 22px 22px;
  border: 1px solid #e2eefc;
  border-radius: 3px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.service-icon {
  width: 48px;
  height: 44px;
  margin-bottom: 9px;
  color: var(--blue);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.service-icon .pale {
  stroke: #91d5ff;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: #1b2738;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.95;
}

.service-card a {
  position: absolute;
  bottom: 18px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  transform: translateX(-50%);
  font-size: 14px;
  line-height: 1;
}

.dot {
  position: absolute;
  width: 83px;
  height: 90px;
  opacity: 0.5;
  background-image: radial-gradient(#78bffd 1.3px, transparent 1.4px);
  background-size: 9px 9px;
}

.dot-left {
  left: -22px;
  bottom: 14px;
}

.dot-right {
  right: -8px;
  top: 1px;
}

.about {
  display: grid;
  grid-template-columns: 40% 60%;
  height: 300px;
  background: #fff;
}

.about-copy {
  position: relative;
  padding: 48px 42px 42px 70px;
  background: linear-gradient(90deg, #e9f5ff 0%, #f6fbff 100%);
}

.about-copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 76px;
  height: 100%;
  background: #f6fbff;
  clip-path: polygon(0 0, 100% 0, 35% 100%, 0 100%);
}

.section-kicker {
  margin: 0 0 7px;
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 900;
}

.about h2 {
  position: relative;
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.about h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 17px;
  height: 3px;
  background: var(--blue);
}

.about p:not(.section-kicker) {
  position: relative;
  z-index: 2;
  width: 300px;
  margin: 0 0 19px;
  color: #111a28;
  font-size: 13px;
  font-weight: 800;
  line-height: 2.05;
}

.about .primary-button {
  position: relative;
  z-index: 2;
  min-width: 160px;
  height: 38px;
  font-size: 12px;
}

.about > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works {
  padding: 52px 70px 60px;
  background: #fff;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-row h2 {
  gap: 8px;
}

.section-row a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

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

.work-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid #e0ecfb;
  border-radius: 3px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.work-card span {
  position: absolute;
  top: 142px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 92, 210, 0.12);
  font-size: 11px;
  font-weight: 900;
}

.work-card h3 {
  margin: 26px 18px 10px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.work-card p {
  margin: 0 18px;
  color: #1e2837;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.9;
}

.work-card > a {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid #8dbdff;
  border-radius: 50%;
  color: var(--blue);
  overflow: hidden;
  text-indent: -999px;
  font-size: 0;
  font-weight: 500;
  line-height: 1;
}

.work-card > a::before {
  content: "→";
  pointer-events: none;
  text-indent: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(1px);
}

.talk-interview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 300px;
}

.talk-panel {
  position: relative;
  overflow: hidden;
}

.talk-panel img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 68%;
  height: 100%;
  object-fit: cover;
}

.talk-panel > div {
  position: relative;
  z-index: 2;
}

.cross-talk {
  color: #fff;
  background:
    linear-gradient(110deg, rgba(0, 114, 237, 0.94) 0 54%, rgba(0, 114, 237, 0.38) 54% 71%, transparent 71%),
    linear-gradient(90deg, #0077f5, #009bed);
}

.cross-talk::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -34px;
  width: 180px;
  height: 250px;
  background: rgba(0, 102, 230, 0.5);
  transform: rotate(19deg);
}

.cross-talk > div {
  padding: 58px 0 0 46px;
}

.talk-panel div > p {
  margin: 0 0 10px;
  background: currentColor;
}

.talk-panel h2 {
  margin: 0 0 5px;
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.talk-panel span {
  display: block;
  margin-bottom: 19px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.65;
}

.talk-panel a {
  min-width: 164px;
  height: 38px;
  gap: 12px;
  border: 1px solid currentColor;
  color: inherit;
  background: #fff;
  box-shadow: none;
  color: var(--blue);
  font-size: 12px;
}

.talk-panel a span {
  display: inline;
  margin: 0;
  font-size: inherit;
  line-height: 1;
}

.cross-talk a {
  color: var(--blue);
}

.interview {
  background: linear-gradient(100deg, #f6fbff 0 68%, #fff 68%);
}

.interview::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 0;
  width: 93px;
  height: 100%;
  background: #fff;
  clip-path: polygon(39% 0, 100% 0, 61% 100%, 0 100%);
}

.interview img {
  right: 0;
  width: 54%;
}

.interview > div {
  padding: 66px 0 0 86px;
}

.interview h2 {
  color: var(--blue);
}

.interview span {
  color: #111b29;
}

.interview a {
  border-color: #9dc6ff;
}

.news {
  display: grid;
  grid-template-columns: 70% 30%;
  min-height: 290px;
  background: #fff;
}

.news-list {
  padding: 46px 70px 42px;
}

.news .section-row {
  margin-bottom: 18px;
}

.news .section-row h2 {
  font-size: 24px;
}

.news-item {
  display: grid;
  grid-template-columns: 96px 82px 1fr 20px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid #d9e5f4;
  color: #111721;
  font-size: 13px;
}

.news-item time {
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 900;
}

.news-item span {
  justify-self: start;
  min-width: 62px;
  padding: 2px 16px 3px;
  border: 1px solid #9cc4ff;
  border-radius: 999px;
  color: var(--blue);
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
}

.news-item p {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
}

.news-item b {
  color: #111;
  font-size: 24px;
  font-weight: 500;
}

.news-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f3faff 0 20%, #0073ee 21% 100%);
}

.news-image::before {
  content: "";
  position: absolute;
  left: -55px;
  top: 0;
  width: 86px;
  height: 100%;
  background: #fff;
  clip-path: polygon(65% 0, 100% 0, 35% 100%, 0 100%);
}

.news-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,0) 0 42%, rgba(0, 89, 220, 0.75) 43% 100%);
}

.news-image img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 300px 270px 220px;
  align-items: center;
  column-gap: 34px;
  margin-block: 56px;
  height: 220px;
  overflow: hidden;
  padding: 0 92px 0 0;
  color: #fff;
  background:
    linear-gradient(112deg, rgba(0, 86, 216, 0.96) 0 64%, rgba(0, 155, 245, 0.78) 64% 82%, rgba(0, 104, 232, 0.96) 82%),
    linear-gradient(90deg, #0064e7, #008df0);
}

.join::before,
.join::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.08);
  transform: skewX(-28deg);
}

.join::before {
  left: -38px;
  top: 0;
  width: 210px;
  height: 100%;
}

.join::after {
  right: 140px;
  top: 0;
  width: 125px;
  height: 100%;
}

.join img {
  position: absolute;
  left: 0;
  top: 0;
  width: 42%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
}

.join h2 {
  position: relative;
  z-index: 1;
  grid-column: 2;
  margin: 0;
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.join h2::before,
.join h2::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #77d6ff;
}

.join h2::before {
  left: -16px;
  top: 18px;
  transform: rotate(58deg);
}

.join h2::after {
  right: 5px;
  top: -2px;
  transform: rotate(-60deg);
}

.join p {
  position: relative;
  z-index: 1;
  grid-column: 3;
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.9;
}

.join a {
  position: relative;
  z-index: 1;
  grid-column: 4;
  min-width: 190px;
  height: 46px;
  color: #fff;
  background: linear-gradient(90deg, #ff6b37, #ff8a5e);
  box-shadow: none;
  font-size: 13px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 205px 1fr;
  min-height: 240px;
  padding: 44px 64px 34px 70px;
  background: #fff;
}

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

.footer-brand .brand-mark {
  width: 25px;
  height: 22px;
}

.footer-brand .brand-mark span {
  width: 11px;
  height: 15px;
}

.footer-brand .brand-mark span:nth-child(2) {
  left: 9px;
}

.footer-brand .brand-name {
  font-size: 16px;
}

.footer-brand p {
  margin: 0 0 12px;
  color: #1c2837;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.85;
}

.socials {
  display: flex;
  gap: 16px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.socials a {
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  color: #0e1824;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
}

.footer-brand small {
  color: #1c2837;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 7px;
}

.footer-nav h3 {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 900;
}

.footer-nav a {
  display: block;
  margin-bottom: 3px;
  color: #1c2837;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.65;
}

.footer-bottom {
  position: absolute;
  right: 70px;
  bottom: 22px;
  display: flex;
  gap: 28px;
}

.footer-bottom a {
  color: #1c2837;
  font-size: 11px;
  font-weight: 800;
}

.back-to-top {
  position: absolute;
  right: 23px;
  bottom: 17px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 16px;
  line-height: 1;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes nlFadeUp {
    from {
      opacity: 0;
      filter: blur(5px);
      transform: translate3d(0, 24px, 0);
    }
    to {
      opacity: 1;
      filter: blur(0);
      transform: translate3d(0, 0, 0);
    }
  }

  @keyframes nlHeroPhoto {
    from {
      opacity: 0;
      transform: scale(1.035);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes nlCardRise {
    from {
      opacity: 0;
      filter: blur(6px);
      transform: translate3d(0, 42px, 0);
    }
    to {
      opacity: 1;
      filter: blur(0);
      transform: translate3d(0, 0, 0);
    }
  }

  @keyframes nlLineGrow {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(1);
    }
  }

  @keyframes nlJoinImage {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 0.26;
      transform: translateY(0);
    }
  }

  .js.reveal-ready .reveal:not(.is-visible) {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(0, 24px, 0);
  }

  .js.reveal-ready .reveal-card:not(.is-visible) {
    filter: blur(6px);
    transform: translate3d(0, 42px, 0);
  }

  .js.reveal-ready .line-reveal {
    transform-origin: left center;
  }

  .js.reveal-ready .line-reveal:not(.is-visible),
  .js.reveal-ready .about h2:not(.is-visible)::after {
    transform: scaleX(0);
  }

  .js.reveal-ready .reveal.is-visible {
    animation: nlFadeUp 0.68s cubic-bezier(.2, .8, .2, 1) backwards;
    animation-delay: var(--fade-delay, 0.04s);
  }

  .js.reveal-ready .reveal-card.is-visible {
    animation: nlCardRise 0.88s cubic-bezier(.16, .84, .22, 1) backwards;
    animation-delay: var(--card-delay, 0s);
    will-change: opacity, filter, transform;
  }

  .hero-copy {
    animation-duration: 0.85s;
  }

  .js.reveal-ready .hero-main-image.reveal.is-visible {
    animation: nlHeroPhoto 1.2s cubic-bezier(.2, .8, .2, 1) backwards;
    animation-delay: var(--fade-delay, 0.12s);
  }

  .js.reveal-ready .join img.reveal.is-visible {
    animation: nlJoinImage 0.85s cubic-bezier(.2, .8, .2, 1) backwards;
    animation-delay: var(--fade-delay, 0s);
  }

  .hero-bg-shape {
    animation-duration: 1s;
  }

  .service-card:nth-child(1),
  .work-card:nth-child(1) {
    --card-delay: 0.04s;
  }

  .service-card:nth-child(2),
  .work-card:nth-child(2) {
    --card-delay: 0.18s;
  }

  .service-card:nth-child(3),
  .work-card:nth-child(3) {
    --card-delay: 0.32s;
  }

  .service-card:nth-child(4) {
    --card-delay: 0.46s;
  }

  .brand,
  .hero-shadow-text,
  .partners-label,
  .service-card:nth-child(1),
  .work-card:nth-child(1),
  .talk-panel:nth-child(1),
  .footer-nav > div:nth-child(1) {
    --fade-delay: 0s;
  }

  .hero-copy h1,
  .service-card:nth-child(1) .service-icon,
  .work-card:nth-child(1) img,
  .news-item time,
  .join h2 {
    --fade-delay: 0.06s;
  }

  .hero-copy p,
  .service-card:nth-child(1) h3,
  .work-card:nth-child(1) span,
  .news-item span,
  .join p {
    --fade-delay: 0.14s;
  }

  .hero-copy .primary-button,
  .service-card:nth-child(1) p,
  .work-card:nth-child(1) h3,
  .news-item p,
  .join a {
    --fade-delay: 0.22s;
  }

  .shape-one {
    --fade-delay: 0.12s;
  }

  .shape-two {
    --fade-delay: 0.22s;
  }

  .contact-button,
  .round-next,
  .work-card:nth-child(1) p,
  .news-item b {
    --fade-delay: 0.3s;
  }

  .work-card:nth-child(1) > a {
    --fade-delay: 0.38s;
  }

  .global-nav a:nth-child(2),
  .partner-logos li:nth-child(2),
  .socials li:nth-child(2) a,
  .footer-nav > div:nth-child(2) {
    --fade-delay: 0.06s;
  }

  .global-nav a:nth-child(3),
  .partner-logos li:nth-child(3),
  .socials li:nth-child(3) a,
  .footer-nav > div:nth-child(3) {
    --fade-delay: 0.12s;
  }

  .global-nav a:nth-child(4),
  .partner-logos li:nth-child(4),
  .socials li:nth-child(4) a,
  .footer-nav > div:nth-child(4) {
    --fade-delay: 0.18s;
  }

  .global-nav a:nth-child(5),
  .partner-logos li:nth-child(5) {
    --fade-delay: 0.24s;
  }

  .partner-logos li:nth-child(6) {
    --fade-delay: 0.3s;
  }

  .partner-logos li:nth-child(7) {
    --fade-delay: 0.36s;
  }

  .partner-logos li:nth-child(8) {
    --fade-delay: 0.42s;
  }

  .service-card:nth-child(2),
  .work-card:nth-child(2) {
    --fade-delay: 0.08s;
  }

  .service-card:nth-child(3),
  .work-card:nth-child(3) {
    --fade-delay: 0.16s;
  }

  .service-card:nth-child(4) {
    --fade-delay: 0.24s;
  }

  .talk-panel:nth-child(2),
  .news-image,
  .about > img {
    --fade-delay: 0.12s;
  }

  .service-card:nth-child(2) .service-icon,
  .service-card:nth-child(2) h3,
  .service-card:nth-child(2) p,
  .work-card:nth-child(2) img,
  .work-card:nth-child(2) span,
  .work-card:nth-child(2) h3,
  .work-card:nth-child(2) p,
  .work-card:nth-child(2) > a,
  .news-item:nth-of-type(2) {
    --fade-delay: 0.1s;
  }

  .service-card:nth-child(3) .service-icon,
  .service-card:nth-child(3) h3,
  .service-card:nth-child(3) p,
  .work-card:nth-child(3) img,
  .work-card:nth-child(3) span,
  .work-card:nth-child(3) h3,
  .work-card:nth-child(3) p,
  .work-card:nth-child(3) > a,
  .news-item:nth-of-type(3) {
    --fade-delay: 0.18s;
  }

  .service-card:nth-child(4) .service-icon,
  .service-card:nth-child(4) h3,
  .service-card:nth-child(4) p {
    --fade-delay: 0.26s;
  }

  .section-line,
  .about h2::after {
    transform-origin: left center;
  }

  .js.reveal-ready .line-reveal.is-visible,
  .js.reveal-ready .about h2.is-visible::after {
    animation: nlLineGrow 0.55s ease backwards;
  }

  .service-card,
  .work-card,
  .news-item,
  .round-next {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  }

  .contact-button,
  .primary-button,
  .talk-panel a,
  .join a {
    position: relative;
    overflow: hidden;
    background-size: 180% 100%;
  }

  .contact-button::after,
  .primary-button::after,
  .talk-panel a::after,
  .join a::after {
    content: "";
    position: absolute;
    inset: -45% -70%;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 42%, rgba(255,255,255,0.44) 50%, transparent 58%);
    opacity: 0;
    transform: translateX(-56%);
    transition: transform 0.48s ease, opacity 0.28s ease;
  }

  .contact-button span,
  .primary-button span,
  .talk-panel a span,
  .join a span,
  .section-row a span {
    transition: transform 0.22s ease;
  }

  .section-row a {
    position: relative;
  }

  .section-row a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 22px;
    bottom: -5px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease;
  }

  .service-card a {
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  }

  .work-card > a::before {
    transition: transform 0.22s ease;
  }

  .service-card:hover,
  .work-card:hover,
  .news-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 80, 180, 0.18);
  }

  .round-next:hover {
    transform: translateX(3px);
    border-color: var(--blue);
    box-shadow: 0 10px 20px rgba(0, 96, 220, 0.13);
  }

  .primary-button,
  .contact-button,
  .talk-panel a,
  .join a,
  .section-row a,
  .back-to-top,
  .socials a {
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease, background 0.22s ease;
  }

  .work-card > a {
    transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, opacity 0.22s ease;
  }

  .primary-button:hover,
  .contact-button:hover,
  .talk-panel a:hover,
  .join a:hover,
  .section-row a:hover,
  .back-to-top:hover,
  .socials a:hover {
    transform: translateY(-3px);
    opacity: 1;
  }

  .primary-button:hover,
  .contact-button:hover {
    background-position: 100% 0;
    box-shadow: 0 14px 30px rgba(0, 88, 230, 0.26);
  }

  .talk-panel a:hover {
    border-color: #77adff;
    background: #f3f8ff;
    box-shadow: 0 12px 26px rgba(0, 95, 220, 0.16);
  }

  .join a:hover {
    background-position: 100% 0;
    box-shadow: 0 14px 30px rgba(255, 100, 54, 0.26);
  }

  .contact-button:hover::after,
  .primary-button:hover::after,
  .talk-panel a:hover::after,
  .join a:hover::after {
    opacity: 1;
    transform: translateX(56%);
  }

  .contact-button:hover span,
  .primary-button:hover span,
  .talk-panel a:hover span,
  .join a:hover span,
  .section-row a:hover span {
    transform: translateX(4px);
  }

  .section-row a:hover::after {
    transform: scaleX(1);
  }

  .service-card:hover a,
  .service-card a:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.08);
    box-shadow: 0 8px 18px rgba(0, 104, 232, 0.26);
  }

  .work-card:hover > a::before,
  .work-card > a:hover::before {
    transform: translate(2px, 1px);
  }

  .work-card > a:hover {
    border-color: var(--blue);
    background: #eef6ff;
    opacity: 0.92;
  }

  .contact-button:active,
  .primary-button:active,
  .talk-panel a:active,
  .join a:active,
  .section-row a:active,
  .back-to-top:active {
    transform: translateY(-1px) scale(0.98);
  }

  .contact-button:focus-visible,
  .primary-button:focus-visible,
  .talk-panel a:focus-visible,
  .join a:focus-visible,
  .section-row a:focus-visible,
  .service-card a:focus-visible,
  .work-card > a:focus-visible,
  .back-to-top:focus-visible {
    outline: 3px solid rgba(0, 104, 232, 0.24);
    outline-offset: 4px;
  }
}

@media (min-width: 818px) {
  body {
    min-width: 0;
  }

  .page {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .site-header {
    left: clamp(40px, 6.4vw, 96px);
    right: clamp(34px, 5.8vw, 88px);
    gap: clamp(28px, 3.6vw, 58px);
  }

  .global-nav {
    gap: clamp(34px, 4.6vw, 74px);
    font-size: clamp(13px, 1vw, 16px);
  }

  .contact-button {
    min-width: clamp(132px, 11vw, 160px);
    height: clamp(38px, 3.1vw, 48px);
    font-size: clamp(12px, 0.9vw, 14px);
  }

  .hero {
    height: clamp(520px, 48vw, 720px);
  }

  .hero::before {
    left: clamp(112px, 15vw, 230px);
    width: clamp(308px, 36vw, 520px);
    height: clamp(250px, 30vw, 430px);
  }

  .hero::after {
    width: clamp(80px, 9vw, 138px);
  }

  .shape-one {
    left: clamp(214px, 30vw, 430px);
    width: clamp(218px, 24vw, 350px);
    height: clamp(216px, 24vw, 350px);
  }

  .shape-two {
    right: clamp(52px, 8vw, 130px);
    width: clamp(229px, 26vw, 390px);
    height: clamp(201px, 23vw, 340px);
  }

  .hero-copy {
    left: clamp(72px, 8vw, 128px);
    top: clamp(180px, 17vw, 250px);
    width: clamp(560px, 46vw, 720px);
  }

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

  .hero-copy h1 span {
    font-size: clamp(42px, 3.7vw, 60px);
  }

  .hero-copy p {
    font-size: clamp(16px, 1.2vw, 20px);
  }

  .partners {
    padding-inline: clamp(56px, 7vw, 110px);
  }

  .partner-logos {
    gap: clamp(20px, 3vw, 46px);
  }

  .partner-logos li {
    font-size: clamp(16px, 1.25vw, 20px);
  }

  .services {
    min-height: clamp(340px, 27vw, 430px);
    padding: clamp(52px, 5vw, 78px) clamp(72px, 8vw, 128px) clamp(58px, 5.4vw, 86px);
  }

  .service-grid {
    gap: clamp(20px, 2vw, 34px);
  }

  .service-card {
    height: clamp(240px, 19vw, 310px);
    padding-top: clamp(24px, 2.2vw, 34px);
  }

  .service-card h3 {
    font-size: clamp(16px, 1.2vw, 20px);
  }

  .service-card p {
    font-size: clamp(12px, 0.95vw, 14px);
  }

  .about {
    grid-template-columns: minmax(360px, 40%) minmax(0, 60%);
    height: clamp(300px, 28vw, 430px);
  }

  .about-copy {
    padding-left: clamp(70px, 8vw, 128px);
    padding-top: clamp(48px, 5vw, 76px);
  }

  .about p:not(.section-kicker) {
    width: min(70%, 360px);
    font-size: clamp(13px, 1vw, 16px);
  }

  .about > img {
    width: 100%;
    height: 100%;
  }

  .works {
    padding: clamp(56px, 5vw, 82px) clamp(70px, 8vw, 128px) clamp(66px, 5.5vw, 92px);
  }

  .works-grid {
    gap: clamp(24px, 2.4vw, 40px);
  }

  .work-card {
    min-height: clamp(320px, 24vw, 390px);
  }

  .work-card img {
    height: clamp(150px, 12vw, 210px);
  }

  .work-card span {
    top: calc(clamp(150px, 12vw, 210px) - 8px);
  }

  .work-card h3 {
    font-size: clamp(17px, 1.25vw, 21px);
  }

  .work-card p {
    font-size: clamp(12px, 0.95vw, 14px);
  }

  .talk-interview {
    height: clamp(300px, 24vw, 380px);
  }

  .talk-panel img {
    width: 100%;
    height: 100%;
  }

  .interview img {
    width: 100%;
  }

  .cross-talk > div {
    padding-left: clamp(46px, 5vw, 82px);
    padding-top: clamp(58px, 6vw, 92px);
  }

  .interview > div {
    padding-left: clamp(86px, 9vw, 146px);
    padding-top: clamp(66px, 6vw, 96px);
  }

  .talk-panel h2 {
    font-size: clamp(36px, 3.1vw, 48px);
  }

  .news {
    grid-template-columns: minmax(0, 1fr) clamp(203px, 27vw, 380px);
    min-height: clamp(290px, 23vw, 360px);
  }

  .news-list {
    padding: clamp(46px, 5vw, 76px) clamp(70px, 8vw, 128px) clamp(42px, 4.5vw, 70px);
  }

  .news-image img {
    right: 0;
    width: 100%;
    height: 100%;
  }

  .join {
    grid-template-columns: minmax(80px, 1fr) clamp(300px, 24vw, 380px) clamp(270px, 26vw, 390px) clamp(220px, 18vw, 280px);
    margin-block: clamp(56px, 5vw, 84px);
    height: clamp(220px, 18vw, 300px);
    padding-right: clamp(92px, 8vw, 132px);
  }

  .join h2 {
    font-size: clamp(56px, 5vw, 72px);
  }

  .join p {
    font-size: clamp(15px, 1.2vw, 18px);
  }

  .site-footer {
    grid-template-columns: minmax(205px, 28%) 1fr;
    padding: clamp(44px, 4.8vw, 74px) clamp(64px, 8vw, 128px) clamp(34px, 4vw, 62px) clamp(70px, 8vw, 128px);
  }
}

@media (max-width: 816px) {
  body {
    min-width: 0;
  }

  .page {
    width: 100%;
  }
}
