@font-face {
  font-family: "pp_telegrafregular";
  src: url("../fonts/cd7b05ba22e73021e0a390f532a72589-webfont.woff2") format("woff2"),
    url("../fonts/cd7b05ba22e73021e0a390f532a72589-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

:root {
  --black: #222222;
  --white: #f9fafb;
  --blue: #2563eb;
  --pad-x: 100px;
  --pad-y: 30px;
  --content: 1240px;
  --radius-pill: 60px;
  --radius-menu: 40px;
}

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

html {
  scroll-behavior: auto;
  font-size: 16px;
}

body {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
}

a {
  color: inherit;
}

/* ---------- Sticky adaptive nav ---------- */
#navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px var(--pad-x);
  transition: background 0.35s ease, color 0.35s ease, backdrop-filter 0.35s ease;
  background: transparent;
}

#navbar.stuck {
  background: rgba(34, 34, 34, 0.92);
  backdrop-filter: blur(14px);
}

#navbar.nav-light.stuck,
#navbar.nav-light {
  background: rgba(249, 250, 251, 0.94) !important;
  backdrop-filter: blur(14px);
}

#navbar.nav-light .n-logo {
  color: var(--black);
}

#navbar.nav-light .n-links a {
  color: var(--black);
}

#navbar.nav-light .n-links a:hover {
  color: var(--blue);
  opacity: 1;
}

.n-logo {
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.n-links {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.n-links a {
  font-size: 24px;
  line-height: 1;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-transform: uppercase;
  transition: opacity 0.2s, color 0.2s;
}

.n-links a:hover {
  opacity: 0.55;
}

/* ---------- Pill CTA: 176×48, 48 circle, slide fill ---------- */
.pill--mag {
  --pill-accent: var(--blue);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  min-width: 176px;
  padding: 0 12px 0 10px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

.pill__bg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pill-accent);
  z-index: 0;
  transition: width 0.5s cubic-bezier(0.65, 0.05, 0.36, 1),
    border-radius 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.pill--mag:hover .pill__bg,
.pill--mag:focus-visible .pill__bg {
  width: calc(100% - 20px);
  border-radius: 999px;
}

.pill__txt {
  position: relative;
  z-index: 1;
  color: var(--white);
  margin-left: 6px;
  margin-right: 6px;
  white-space: nowrap;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pill__arr {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.pill__arr svg {
  display: block;
  width: 28px;
  height: 28px;
}

.p-blue {
  --pill-accent: var(--blue);
  color: var(--white);
  background: transparent;
}

/* ---------- s1 Hero ---------- */
#s1 {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: var(--pad-y) var(--pad-x) 40px;
  margin-top: -88px;
  padding-top: calc(88px + var(--pad-y));
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 542px);
  gap: 40px 48px;
  align-items: end;
  max-width: var(--content);
  margin: 0 auto;
  width: 100%;
  padding-top: 40px;
}

.hero-parallax {
  will-change: transform;
}

.hero-title {
  font-size: clamp(4rem, 11vw, 144px);
  line-height: 0.87;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-title .blue,
.blue {
  color: var(--blue);
}

.line-wrap {
  overflow: hidden;
  display: block;
}

.line-inner {
  display: block;
  transform: translateY(105%);
}

#hl3 {
  margin-left: 30px;
}

.hero-btm {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  opacity: 0;
}

.hero-desc {
  font-size: 20px;
  line-height: 1.65;
  color: rgba(249, 250, 251, 0.85);
  text-transform: capitalize;
}

.hero-ellipse {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0%, #c4c4c4 60%, #888 100%);
  opacity: 0.9;
  pointer-events: none;
}

/* ---------- s2 Overview ---------- */
#s2 {
  position: relative;
  background: #ebe9e4;
  color: var(--black);
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px var(--pad-x);
}

.ov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: var(--content);
  margin: 0 auto;
}

.ov-h {
  font-size: clamp(3rem, 5.5vw, 96px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.97;
  text-transform: capitalize;
}

.ov-p {
  font-size: 20px;
  line-height: 30px;
  color: var(--black);
  margin-bottom: 30px;
}

#s2 .fu-r a.pill--mag .pill__txt {
  color: var(--white);
}

/* ---------- s3 Clients ---------- */
#s3 {
  background: #f0eeea;
  color: var(--black);
  padding: 100px var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#s3 h2 {
  font-size: clamp(2.5rem, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.p-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cb {
  width: 161px;
  height: 100px;
  border-radius: 12px;
  transition: opacity 0.2s, transform 0.2s;
}

.cb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.cba {
  background: #cdd9e5;
}

.cbb {
  background: #dedad4;
}

/* ---------- s-overview-intro + orb ---------- */
#s-overview-intro {
  position: relative;
  background: var(--black);
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px var(--pad-x);
}

.ov-intro-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 55% 48% at 50% 42%,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.06) 45%,
    transparent 70%
  );
  transform: scale(0.65);
  opacity: 0.85;
  will-change: transform, opacity;
}

.ov-intro-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 714px);
  gap: 40px;
  align-items: center;
}

.ov-intro-title {
  font-size: clamp(3rem, 6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: capitalize;
}

.ov-intro-title .t-light {
  color: var(--white);
}

.ov-intro-title .t-mid {
  color: var(--black);
  background: var(--white);
  padding: 0 0.12em;
}

.ov-intro-title .t-blue {
  color: var(--blue);
}

.ov-intro-body {
  font-size: 20px;
  line-height: 1.65;
  color: var(--white);
}

.ov-intro-body .alt {
  color: var(--black);
  background: rgba(249, 250, 251, 0.92);
  padding: 0 0.08em;
}

.ov-intro-cta {
  margin-top: 28px;
  display: inline-flex;
}

#s-overview-intro .pill__txt {
  color: var(--white);
}

.awards-cta {
  display: inline-flex;
  margin: 0 auto;
}

#ov-orb,
#cs-orb {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff 0%, #d4d4d4 55%, #9a9a9a 100%);
  flex-shrink: 0;
  vertical-align: middle;
  box-shadow: 0 0 48px rgba(255, 255, 255, 0.45), 0 0 1px rgba(255, 255, 255, 0.8) inset;
  will-change: transform;
  position: relative;
}

/* ---------- s-cs ---------- */
#s-cs {
  position: relative;
  background: #1a0f0f;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--pad-x);
}

.cs-orb-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cs-orb-inner {
  width: min(927px, 90vw);
  height: min(927px, 90vw);
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 35%,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 68%
  );
  opacity: 0.75;
  will-change: transform, opacity;
  transform: scale(0.85);
}

.cs-title {
  position: relative;
  z-index: 1;
  font-size: clamp(2.5rem, 5vw, 63px);
  font-weight: 400;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  text-align: center;
  text-transform: capitalize;
  color: var(--white);
}

.cs-flow {
  background: #ebe9e4;
  color: var(--black);
  position: relative;
  overflow: hidden;
}

#s-cs-light {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px var(--pad-x);
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
}

#s-cs-light h2 {
  font-size: clamp(2rem, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
}

#s-cs-light p {
  font-size: 20px;
  line-height: 30px;
  color: #333;
  margin-bottom: 26px;
}

.cs-img-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-img-card {
  border-radius: 18px;
}

#s-mason {
  overflow: hidden;
  padding: 40px 0 80px;
}

.mason-row {
  display: flex;
  gap: 14px;
  padding: 0 14px;
  margin-bottom: 14px;
  width: max-content;
}

.mason-row:last-child {
  margin-bottom: 0;
}

.ms-c {
  flex-shrink: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  width: 320px;
}

.ms-c.g {
  background: #ebebeb;
}

/* ---------- s-skills ---------- */
#s-skills {
  background: #ebe9e4;
  color: var(--black);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sk-hint {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  pointer-events: none;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.sk-drag-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  touch-action: none;
  cursor: grab;
}

.sk-drag-wrap:active,
.sk-drag-wrap.dragging {
  cursor: grabbing;
}

.sk-title {
  font-size: clamp(2.5rem, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  white-space: nowrap;
  pointer-events: none;
}

.sk-cols {
  display: flex;
  gap: 14px;
  width: 100%;
  height: 100vh;
  padding: 14px;
  overflow: hidden;
}

.sk-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sk-bubble {
  border: 1.5px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  line-height: 1.35;
  flex-shrink: 0;
  aspect-ratio: 1;
  width: 100%;
  cursor: grab;
  user-select: none;
  touch-action: none;
  transition: border-color 0.25s, transform 0.2s;
}

.sk-bubble:active {
  cursor: grabbing;
}

.sk-bubble:hover {
  transform: scale(1.03);
}

.sk-b {
  color: var(--blue);
  border-color: #c0caef;
}

.sk-g {
  color: #555;
  border-color: #ccc;
}

.sk-gr {
  color: #2dba7e;
  border-color: #a8ddc7;
}

.sk-r {
  color: #e8614a;
  border-color: #f0c0b8;
}

.sk-p {
  color: #9b59b6;
  border-color: #d4aee0;
}

.sk-o {
  color: #c4841a;
  border-color: #ddc890;
}

/* ---------- s-hww ---------- */
#s-hww {
  background: #1c1c1c;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px var(--pad-x);
  gap: 60px;
  perspective: 1400px;
}

.hww-r {
  position: relative;
  z-index: 1;
}

.hww-l h2 {
  font-size: clamp(2.5rem, 5vw, 80px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.93;
  margin-bottom: 16px;
  color: var(--white);
}

.hww-l .sub {
  font-size: 18px;
  color: #888;
  line-height: 1.75;
  margin-bottom: 28px;
}

.hww-tab {
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 15px 22px;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: background 0.25s, border-color 0.25s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s;
}

.hww-tab:hover {
  border-color: #3a3a3a;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.hww-tab.on {
  background: var(--blue);
  border-color: var(--blue);
}

.hww-tab .tn {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #777;
  min-width: 28px;
}

.hww-tab.on .tn {
  color: rgba(255, 255, 255, 0.75);
}

.hww-tab .tl {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}

.hww-panel {
  display: none;
  background: #242424;
  border-radius: 18px;
  padding: 38px 40px;
}

.hww-panel.on {
  display: block;
}

.hww-panel h3 {
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--white);
}

.hww-panel p {
  font-size: 16px;
  color: #999;
  line-height: 1.85;
  margin-bottom: 22px;
}

.panel-cta {
  --pc-accent: var(--blue);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  background: transparent;
  border: 1px solid #333;
  color: var(--white);
  border-radius: 999px;
  padding: 0 12px 0 8px;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

.panel-cta .pc-bg {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pc-accent);
  z-index: 0;
  transition: width 0.5s cubic-bezier(0.65, 0.05, 0.36, 1),
    border-radius 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.panel-cta:hover .pc-bg,
.panel-cta:focus-visible .pc-bg {
  width: calc(100% - 16px);
  border-radius: 999px;
}

.panel-cta .pc-txt {
  position: relative;
  z-index: 1;
  margin-left: 8px;
  margin-right: 6px;
}

.panel-cta .pc-arr {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.panel-cta:hover {
  border-color: var(--pc-accent);
}

/* ---------- s-awards ---------- */
#s-awards {
  background: var(--white);
  color: var(--black);
  padding: 100px var(--pad-x);
  text-align: center;
}

#s-awards h2 {
  font-size: clamp(2rem, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.aw-sub {
  font-size: 18px;
  color: #444;
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto 28px;
}

.aw-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.aw-box {
  background: #f3f3f3;
  border-radius: 12px;
  height: 52px;
  min-width: 140px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #999;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.aw-box:hover {
  background: #e8e8e8;
}

.aw-dark {
  background: var(--black);
  color: var(--white);
  gap: 8px;
  min-width: 190px;
}

.aw-dark:hover {
  background: #333;
}

/* ---------- s-faq ---------- */
#s-faq {
  background: #ebe9e4;
  color: var(--black);
  padding: 100px var(--pad-x);
}

#s-faq h2 {
  font-size: clamp(2rem, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 900px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 24px 0;
  cursor: pointer;
}

.faq-item:first-of-type {
  border-top: 1px solid #ccc;
}

.faq-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.faq-star {
  color: var(--blue);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.faq-q {
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
  line-height: 1.4;
  flex: 1;
}

.faq-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.faq-item.open .faq-arrow {
  background: var(--black);
  border-color: var(--black);
}

.faq-body {
  display: none;
  padding: 18px 0 0 38px;
  font-size: 14px;
  color: #444;
  line-height: 1.85;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.faq-item.open .faq-body {
  display: block;
}

/* ---------- s-check ---------- */
#s-check {
  background: #ebe9e4;
  color: var(--black);
  padding: 100px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.check-wave {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.check-l,
.check-r {
  position: relative;
  z-index: 1;
}

.check-l h2 {
  font-size: clamp(2rem, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.check-l p {
  font-size: 18px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 26px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
  color: #444;
  line-height: 1.55;
}

.check-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.check-icon {
  color: var(--blue);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  width: 32px;
  text-align: center;
}

/* ---------- s-blogs ---------- */
#s-blogs {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--pad-x);
}

.bl-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  max-width: var(--content);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.bl-hdr h2 {
  font-size: clamp(2.5rem, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.bl-btns {
  display: flex;
  gap: 10px;
}

.bl-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.bl-btn:hover {
  background: #1c1c1c;
}

.bl-slider {
  overflow: hidden;
  max-width: var(--content);
  margin: 0 auto;
  width: 100%;
}

.bl-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.bl-card {
  flex: 0 0 calc(33.333% - 14px);
  background: #1a1a1a;
  border-radius: 18px;
  overflow: hidden;
}

.bl-img {
  background: #252525;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 12px;
}

.bl-body {
  padding: 20px 22px;
}

.bl-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bl-tag {
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bl-time {
  font-size: 11px;
  color: #666;
  letter-spacing: 0.05em;
}

.bl-card p {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- s-footer ---------- */
#s-footer {
  background: #1a1a1a;
  border-radius: 24px 24px 0 0;
  padding: 64px var(--pad-x) 32px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  max-width: var(--content);
  margin: 0 auto;
}

.ft-logo {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--white);
}

.ft-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.85;
  max-width: 270px;
}

.ft-hq {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-top: 24px;
}

.ft-hq-ic {
  width: 45px;
  height: 45px;
  border: 1px solid #252525;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ft-hq-tx p:first-child {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 4px;
}

.ft-hq-tx p:last-child {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

.ft-ct {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 18px;
}

.ft-ul {
  list-style: none;
  padding: 0;
}

.ft-ul li {
  margin-bottom: 10px;
}

.ft-ul a {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

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

.ft-call {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}

.ft-call-ci {
  width: 52px;
  height: 52px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ft-call-tx p:first-child {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 4px;
  text-align: right;
}

.ft-call-tx p:last-child {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: right;
  color: var(--white);
}

.ft-div {
  border: none;
  border-top: 1px solid #222;
  margin: 34px auto 24px;
  max-width: var(--content);
}

.ft-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: var(--content);
  margin: 0 auto;
}

.ft-bot-t {
  font-size: 11px;
  color: #444;
}

.soc-row {
  display: flex;
  gap: 8px;
}

.soc-a {
  width: 32px;
  height: 32px;
  border: 1px solid #252525;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  text-decoration: none;
  font-size: 11px;
  transition: border-color 0.2s, color 0.2s;
}

.soc-a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ---------- About Us (s-about) ---------- */
#s-about {
  position: relative;
  background: var(--white);
  color: var(--black);
  padding: 100px var(--pad-x);
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.about-visual {
  border-radius: 24px;
  min-height: 420px;
  background: linear-gradient(145deg, #ebe9e4 0%, #f5f4f0 45%, #e8e4dc 100%);
  position: relative;
  overflow: hidden;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  pointer-events: none;
}

.about-kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  font-weight: 400;
}

#s-about h2 {
  font-size: clamp(2.2rem, 4.2vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 22px;
}

#s-about h2 .blue {
  color: var(--blue);
}

.about-copy {
  font-size: 18px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 520px;
}

#s-about .pill--mag {
  margin-top: 8px;
}

/* GSAP hooks */
.fu {
  opacity: 0;
  transform: translateY(55px);
}

.fu-l {
  opacity: 0;
  transform: translateX(-60px);
}

.fu-r {
  opacity: 0;
  transform: translateX(60px);
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: #222;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 2px;
}

@media (min-width: 1440px) {
  :root {
    --pad-x: 100px;
  }

  .bl-card {
    flex: 0 0 calc(33.333% - 14px);
  }

  .ms-c {
    width: 380px;
  }
}

@media (max-width: 1024px) {
  :root {
    --pad-x: 40px;
  }

  .n-logo {
    font-size: 36px;
  }

  .n-links a {
    font-size: 16px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  #hl3 {
    margin-left: 0;
  }

  .ov-intro-inner {
    grid-template-columns: 1fr;
  }

  #s-cs-light,
  #s-check,
  #s-about,
  #s-hww {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
  }

  .n-links {
    display: none;
  }

  #navbar {
    padding: 14px var(--pad-x);
  }

  .hero-title {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .hero-btm {
    padding-right: 0;
  }

  .ov-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bl-card {
    flex: 0 0 88%;
  }

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

  .ft-call {
    justify-content: flex-start;
  }

  .sk-cols {
    gap: 8px;
    padding: 8px;
  }

  .sk-bubble {
    font-size: 10px;
  }

  .sk-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    white-space: normal;
    text-align: center;
    padding: 0 12px;
  }
}
