:root {
  --ink: #0a0a09;
  --ink-soft: #10100e;
  --panel: #141412;
  --panel-2: #191917;
  --paper: #f2f1e9;
  --muted: #96968e;
  --muted-2: #696963;
  --accent: #d8ff3e;
  --accent-dark: #b9de25;
  --line: rgba(242, 241, 233, 0.13);
  --line-strong: rgba(242, 241, 233, 0.23);
  --container: 1360px;
  --header-height: 92px;
  --radius: 3px;
  --font-sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --font-editorial: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--accent);
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--accent);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  z-index: 9998;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 10002;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 15px rgba(216, 255, 62, 0.55);
}

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

.section-pad {
  position: relative;
  padding-block: clamp(110px, 11vw, 180px);
}

.site-header {
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  height: 76px;
  background: rgba(10, 10, 9, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 13px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 38px);
}

.main-nav > a {
  position: relative;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav > a span {
  display: none;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:hover,
.main-nav > a.active {
  color: var(--paper);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-nav-label,
.mobile-nav-footer {
  display: none;
}

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--paper);
  border: 1px solid var(--line-strong);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.language-switch:hover {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.text-cta {
  display: inline-flex;
  height: 42px;
  padding-inline: 18px;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  background: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.text-cta span {
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line-strong);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: var(--paper);
  transition: transform 0.25s ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 42px;
  background: var(--ink);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 12%;
  right: -15%;
  width: 680px;
  height: 680px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  filter: blur(230px);
  opacity: 0.055;
}

.hero-grid-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.42;
  background-image: linear-gradient(to right, transparent calc(100% - 1px), var(--line) 1px), linear-gradient(to bottom, transparent calc(100% - 1px), rgba(242, 241, 233, 0.04) 1px);
  background-size: calc(100% / 8) 100%, 100% 110px;
  mask-image: linear-gradient(to bottom, #000 5%, transparent 92%);
}

.hero-layout {
  display: grid;
  min-height: calc(100svh - var(--header-height) - 190px);
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
  gap: clamp(50px, 7vw, 110px);
}

.eyebrow {
  display: flex;
  margin: 0 0 30px;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 37px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(64px, 7.25vw, 118px);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 > span {
  display: block;
}

.hero h1 .outline-text {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(242, 241, 233, 0.55);
}

.hero-intro {
  max-width: 710px;
  margin: 35px 0 0;
  color: #b5b5ad;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 57px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button-accent {
  color: var(--ink);
  background: var(--accent);
}

.button-accent:hover {
  background: var(--paper);
}

.button i {
  font-size: 17px;
  font-style: normal;
}

.button-ghost {
  color: var(--paper);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}

.button-ghost:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
}

.growth-visual {
  position: relative;
  min-height: 535px;
  overflow: hidden;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease-out;
}

.growth-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.55;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.visual-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-block {
  position: relative;
  z-index: 1;
  margin-top: 82px;
}

.metric-block p,
.metric-block small {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.metric-block strong {
  display: flex;
  margin: 4px 0;
  align-items: baseline;
  color: var(--accent);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 1;
}

.metric-block strong > span {
  margin-right: 2px;
  font-size: 33px;
}

.metric-block strong b {
  font-size: clamp(78px, 7vw, 118px);
}

.metric-block strong em {
  margin-left: 9px;
  color: var(--paper);
  font-size: 24px;
  font-style: normal;
  letter-spacing: -0.03em;
}

.data-chart {
  position: absolute;
  right: 0;
  bottom: 46px;
  left: 0;
  height: 190px;
}

.data-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-area-ar {
  fill: url(#chartFillAr);
}

.chart-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  vector-effect: non-scaling-stroke;
}

.is-visible .chart-line {
  animation: draw-line 1.9s 0.25s cubic-bezier(.2,.8,.2,1) forwards;
}

.chart-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(216, 255, 62, 0.18);
}

.chart-node span {
  position: absolute;
  top: -28px;
  left: 50%;
  padding: 3px 7px;
  color: var(--ink);
  background: var(--accent);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.node-one { bottom: 26px; left: 18%; }
.node-two { bottom: 88px; left: 58%; }
.node-three { top: 16px; right: 4%; }

.visual-status {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 19px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-status i {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: blink 2s ease-in-out infinite;
}

.growth-flow {
  display: flex;
  min-height: 72px;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.growth-flow i {
  color: var(--muted-2);
  font-style: normal;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--accent);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 8px;
}

.display-heading {
  margin: 0;
  font-size: clamp(54px, 6.2vw, 98px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.98;
  text-transform: uppercase;
}

.display-heading em {
  color: var(--accent);
  font-family: var(--font-editorial);
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: none;
}

.proof {
  padding-bottom: 90px;
  background: var(--paper);
  color: var(--ink);
}

.proof .section-kicker {
  color: #61615c;
}

.proof .section-kicker span {
  color: var(--ink);
  border-color: rgba(10, 10, 9, 0.24);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(170px, 0.25fr) minmax(0, 1fr);
  gap: 50px;
}

.proof-content {
  border-top: 1px solid rgba(10, 10, 9, 0.22);
}

.proof-label {
  margin: 18px 0 15px;
  color: #62625d;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.giant-stat {
  display: flex;
  margin: 0;
  align-items: baseline;
  font-size: clamp(140px, 22vw, 350px);
  font-weight: 900;
  letter-spacing: -0.11em;
  line-height: 0.84;
}

.giant-stat span {
  margin-right: 10px;
  color: #a5a5a0;
  font-size: 0.25em;
}

.giant-stat em {
  margin-left: 0.05em;
  color: var(--accent-dark);
  font-size: 0.4em;
  font-style: normal;
}

.proof-bottom {
  display: grid;
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid rgba(10, 10, 9, 0.22);
  grid-template-columns: 1fr 0.72fr;
  gap: 70px;
}

.proof-bottom p {
  margin: 0;
  color: #61615c;
  font-size: 15px;
}

.proof-bottom p:first-child {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.45;
}

.platform-strip {
  margin-top: 95px;
  overflow: hidden;
  border-top: 1px solid rgba(10, 10, 9, 0.16);
  border-bottom: 1px solid rgba(10, 10, 9, 0.16);
}

.platform-track {
  display: flex;
  width: max-content;
  height: 80px;
  align-items: center;
  gap: 28px;
  animation: marquee 34s linear infinite;
}

.platform-track span {
  color: #444440;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-track i {
  width: 5px;
  height: 5px;
  background: var(--accent-dark);
  border-radius: 50%;
}

.about {
  background: var(--ink);
}

.two-col-heading {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(170px, 0.25fr) minmax(0, 1fr);
  gap: 50px;
}

.about-copy {
  display: grid;
  margin-top: 80px;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 125px);
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.about-copy .lead {
  color: var(--paper);
  font-size: clamp(23px, 2.3vw, 34px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.copy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.statement {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  margin-top: 145px;
  padding: clamp(55px, 7vw, 95px);
  background: var(--accent);
  color: var(--ink);
  isolation: isolate;
}

.statement-index {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.statement blockquote {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 75px 0 0;
  font-size: clamp(43px, 5.7vw, 90px);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 1.03;
  text-transform: uppercase;
}

.statement blockquote strong {
  font-family: var(--font-editorial);
  font-weight: 400;
  text-transform: none;
}

.statement-orbit {
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: -250px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(10, 10, 9, 0.22);
  border-radius: 50%;
}

.statement-orbit::before,
.statement-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(10, 10, 9, 0.18);
  border-radius: 50%;
}

.statement-orbit::before { inset: 75px; }
.statement-orbit::after { inset: 155px; }

.statement-orbit i {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--ink);
  border-radius: 50%;
}

.statement-orbit i:nth-child(1) { top: 70px; left: 120px; }
.statement-orbit i:nth-child(2) { top: 245px; left: -5px; }
.statement-orbit i:nth-child(3) { top: 145px; right: 30px; }

.expertise {
  background: var(--paper);
  color: var(--ink);
}

.expertise-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1fr);
  gap: clamp(65px, 9vw, 140px);
}

.expertise-intro {
  position: sticky;
  top: 130px;
}

.expertise .section-kicker,
.work .section-kicker {
  color: #61615c;
}

.expertise .section-kicker span,
.work .section-kicker span {
  color: var(--ink);
  border-color: rgba(10, 10, 9, 0.2);
}

.expertise-intro .display-heading {
  margin-top: 40px;
  font-size: clamp(52px, 5.2vw, 82px);
}

.expertise-intro .display-heading em,
.work .display-heading em {
  color: #789000;
}

.expertise-intro > p {
  max-width: 430px;
  margin: 35px 0 0;
  color: #666661;
  font-size: 15px;
}

.expertise-list {
  border-top: 1px solid rgba(10, 10, 9, 0.22);
}

.expertise-item {
  position: relative;
  display: grid;
  min-height: 250px;
  padding: 40px 5px;
  border-bottom: 1px solid rgba(10, 10, 9, 0.22);
  grid-template-columns: 58px 1fr 45px;
  gap: 20px;
  transition: padding 0.3s ease, background-color 0.3s ease;
}

.expertise-item::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(10, 10, 9, 0.035);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.expertise-item:hover {
  padding-inline: 20px;
}

.expertise-item:hover::before {
  transform: scaleY(1);
}

.item-number {
  padding-top: 10px;
  color: #777771;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.expertise-item h3 {
  margin: 0;
  font-size: clamp(27px, 2.5vw, 40px);
  letter-spacing: -0.055em;
  line-height: 1.15;
}

.expertise-item p {
  max-width: 620px;
  margin: 17px 0 22px;
  color: #62625e;
  font-size: 14px;
}

.expertise-item ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.expertise-item li {
  padding: 6px 10px;
  border: 1px solid rgba(10, 10, 9, 0.16);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.item-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(10, 10, 9, 0.22);
  border-radius: 50%;
  font-size: 15px;
  font-style: normal;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.expertise-item:hover .item-arrow {
  color: var(--ink);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: rotate(45deg);
}

.technology {
  overflow: hidden;
  background: var(--ink-soft);
}

.tech-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.25fr) minmax(0, 1fr);
  gap: 50px;
}

.tech-layout {
  display: grid;
  margin-top: 95px;
  align-items: center;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(60px, 10vw, 160px);
}

.tech-copy > p {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.tech-copy .tech-highlight {
  margin-top: 40px;
  color: var(--paper);
  font-size: clamp(26px, 2.7vw, 40px);
  font-weight: 650;
  line-height: 1.35;
}

.tech-system {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
}

.system-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 170px;
  height: 170px;
  place-content: center;
  text-align: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(216, 255, 62, 0.14);
}

.system-core span {
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.system-core small {
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-ring {
  position: absolute;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.ring-a {
  width: 390px;
  height: 390px;
  animation: rotate-ring 26s linear infinite;
}

.ring-b {
  width: 540px;
  height: 540px;
  border-style: dashed;
  opacity: 0.55;
  animation: rotate-ring-reverse 38s linear infinite;
}

.ring-b::before,
.ring-b::after {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(216, 255, 62, 0.7);
}

.ring-b::before { top: 72px; left: 72px; }
.ring-b::after { right: 32px; bottom: 130px; }

.ring-a i {
  position: absolute;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--paper);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ring-a i:nth-child(1) { top: 21px; left: 40px; }
.ring-a i:nth-child(2) { top: 46%; right: -38px; }
.ring-a i:nth-child(3) { bottom: 17px; left: 60px; }

.tech-stack {
  display: flex;
  margin-top: 85px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 10px;
}

.tech-stack span {
  padding: 11px 15px;
  color: #b3b3ac;
  border: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.tech-stack span:hover {
  color: var(--accent);
  border-color: rgba(216, 255, 62, 0.45);
}

.work {
  background: var(--paper);
  color: var(--ink);
}

.work-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.work-heading .display-heading {
  margin-top: 40px;
}

.work-heading > p {
  max-width: 410px;
  margin: 0 0 8px;
  color: #63635e;
  font-size: 14px;
}

.case-list {
  display: grid;
  margin-top: 90px;
  gap: 28px;
}

.case-study {
  border: 1px solid rgba(10, 10, 9, 0.22);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.case-study:hover {
  box-shadow: 0 35px 80px rgba(10, 10, 9, 0.1);
  transform: translateY(-5px);
}

.case-study > header {
  display: grid;
  min-height: 260px;
  padding: clamp(30px, 4vw, 55px);
  align-content: space-between;
  background: #e9e8df;
  grid-template-columns: 1fr auto;
}

.case-study > header > div {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 20px;
}

.case-id,
.pending-label,
.case-body span,
.case-study footer > span {
  color: #686863;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pending-label {
  padding: 6px 9px;
  color: #4f5d0e;
  background: rgba(185, 222, 37, 0.22);
}

.case-study h3 {
  margin: 70px 0 0;
  font-size: clamp(38px, 5vw, 76px);
  letter-spacing: -0.07em;
  line-height: 1;
}

.case-study header > p {
  margin: auto 0 5px;
  color: #686863;
  font-size: 12px;
  font-weight: 750;
}

.case-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.case-body > div {
  min-height: 185px;
  padding: 30px;
  border-top: 1px solid rgba(10, 10, 9, 0.17);
  border-right: 1px solid rgba(10, 10, 9, 0.17);
}

.case-body > div:last-child {
  border-right: 0;
}

.case-body p,
.case-study footer p {
  margin: 40px 0 0;
  color: #585853;
  font-size: 13px;
}

.case-body .case-result {
  background: var(--accent);
}

.case-result span,
.case-result p {
  color: var(--ink);
}

.case-study > footer {
  position: relative;
  display: grid;
  min-height: 105px;
  padding: 27px 80px 27px 30px;
  align-items: center;
  border-top: 1px solid rgba(10, 10, 9, 0.17);
  grid-template-columns: 135px 1fr;
  gap: 20px;
}

.case-study footer p {
  margin: 0;
}

.case-study footer i {
  position: absolute;
  right: 28px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(10, 10, 9, 0.24);
  border-radius: 50%;
  font-style: normal;
}

.experience {
  background: var(--ink);
}

.experience-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(70px, 10vw, 155px);
}

.experience-heading {
  position: sticky;
  top: 130px;
}

.experience-heading .display-heading {
  margin-top: 40px;
  font-size: clamp(52px, 5.2vw, 82px);
}

.experience-heading > p {
  max-width: 410px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0 0 0 35px;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 10px;
  bottom: 30px;
  left: 4px;
  width: 1px;
  content: "";
  background: var(--line-strong);
}

.timeline li {
  position: relative;
  display: grid;
  min-height: 230px;
  padding: 15px 0 60px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 150px 1fr;
  gap: 35px;
}

.timeline li + li {
  padding-top: 55px;
}

.timeline-dot {
  position: absolute;
  top: 20px;
  left: -35px;
  width: 9px;
  height: 9px;
  background: var(--ink);
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(216, 255, 62, 0.08);
}

.timeline li + li .timeline-dot {
  top: 60px;
}

.timeline-year {
  color: var(--accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: -8px 0 8px;
  font-size: clamp(27px, 2.5vw, 40px);
  letter-spacing: -0.045em;
}

.timeline p {
  margin: 0 0 22px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 650;
}

.timeline small {
  color: var(--muted);
  font-size: 12px;
}

.philosophy {
  background: var(--panel);
}

.philosophy-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.25fr) minmax(0, 1fr);
  gap: 50px;
}

.principle-grid {
  display: grid;
  margin-top: 100px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(5, 1fr);
}

.principle {
  min-height: 355px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.principle:hover {
  color: var(--ink);
  background: var(--accent);
}

.principle > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.principle h3 {
  margin: 95px 0 18px;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.045em;
  line-height: 1.2;
}

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

.principle:hover > span,
.principle:hover p {
  color: rgba(10, 10, 9, 0.68);
}

.contact {
  overflow: hidden;
  background: var(--accent);
  color: var(--ink);
  isolation: isolate;
}

.contact-grid-bg {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.14;
  background-image: linear-gradient(rgba(10, 10, 9, 0.35) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 10, 9, 0.35) 1px, transparent 1px);
  background-size: 95px 95px;
  mask-image: radial-gradient(circle at 50% 35%, #000, transparent 78%);
}

.contact .section-kicker {
  justify-content: center;
  color: rgba(10, 10, 9, 0.63);
}

.contact .section-kicker span {
  color: var(--ink);
  border-color: rgba(10, 10, 9, 0.3);
}

.contact-inner {
  text-align: center;
}

.contact h2 {
  margin: 58px 0 0;
  font-size: clamp(65px, 9.4vw, 150px);
  font-weight: 850;
  letter-spacing: -0.085em;
  line-height: 0.83;
  text-transform: uppercase;
}

.contact h2 em {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
}

.contact-lead {
  max-width: 600px;
  margin: 45px auto 0;
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 600;
  line-height: 1.5;
}

.contact-cta {
  margin-top: 35px;
  color: var(--paper);
  background: var(--ink);
}

.contact-cta:hover {
  color: var(--ink);
  background: var(--paper);
}

.contact-details {
  display: grid;
  margin-top: 95px;
  border-top: 1px solid rgba(10, 10, 9, 0.25);
  border-left: 1px solid rgba(10, 10, 9, 0.25);
  grid-template-columns: repeat(4, 1fr);
  text-align: left;
}

.contact-details > div {
  min-height: 120px;
  padding: 24px;
  border-right: 1px solid rgba(10, 10, 9, 0.25);
  border-bottom: 1px solid rgba(10, 10, 9, 0.25);
}

.contact-details span {
  color: rgba(10, 10, 9, 0.6);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details p {
  margin: 24px 0 0;
  font-size: 12px;
  font-weight: 800;
}

.contact-note {
  margin: 15px 0 0;
  color: rgba(10, 10, 9, 0.58);
  font-size: 9px;
}

.site-footer {
  background: var(--ink);
}

.footer-top {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.footer-brand .brand-copy small {
  max-width: 230px;
}

.footer-top nav {
  display: flex;
  gap: 25px;
}

.footer-top nav a,
.back-top {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-top nav a:hover,
.back-top:hover {
  color: var(--paper);
}

.back-top span {
  margin-left: 7px;
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.2,.75,.2,1), transform 0.8s cubic-bezier(.2,.75,.2,1);
}

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

.error-page {
  display: grid;
  min-height: 100svh;
  padding: 24px;
  place-items: center;
  background: var(--ink);
}

.error-panel {
  position: relative;
  width: min(100%, 920px);
  overflow: hidden;
  padding: clamp(35px, 7vw, 85px);
  background: var(--panel);
  border: 1px solid var(--line);
}

.error-panel::after {
  position: absolute;
  right: -180px;
  bottom: -300px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(216, 255, 62, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 80px var(--panel), inset 0 0 0 81px rgba(216, 255, 62, 0.14);
}

.error-brand {
  margin-bottom: 75px;
}

.error-code {
  margin: 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.error-panel h1 {
  position: relative;
  z-index: 1;
  margin: 20px 0;
  font-size: clamp(55px, 10vw, 125px);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-transform: uppercase;
}

.error-panel h1 em {
  color: var(--accent);
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
}

.error-panel > p:not(.error-code) {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 0 35px;
  color: var(--muted);
}

.error-panel .button {
  position: relative;
  z-index: 1;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
}

html[dir="rtl"] .skip-link {
  right: 14px;
  left: auto;
}

html[dir="rtl"] .brand-copy strong,
html[dir="rtl"] .brand-copy small,
html[dir="rtl"] .main-nav > a,
html[dir="rtl"] .text-cta,
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .button,
html[dir="rtl"] .section-kicker,
html[dir="rtl"] .proof-label,
html[dir="rtl"] .display-heading,
html[dir="rtl"] .hero h1,
html[dir="rtl"] .contact h2,
html[dir="rtl"] .timeline-year,
html[dir="rtl"] .contact-details span,
html[dir="rtl"] .footer-top nav a,
html[dir="rtl"] .back-top,
html[dir="rtl"] .footer-bottom {
  letter-spacing: 0;
}

html[dir="rtl"] .brand-copy strong,
html[dir="rtl"] .brand-copy small,
html[dir="rtl"] .main-nav > a,
html[dir="rtl"] .text-cta,
html[dir="rtl"] .display-heading,
html[dir="rtl"] .hero h1,
html[dir="rtl"] .contact h2,
html[dir="rtl"] .footer-top nav a,
html[dir="rtl"] .back-top {
  text-transform: none;
}

html[dir="rtl"] .display-heading,
html[dir="rtl"] .hero h1,
html[dir="rtl"] .contact h2,
html[dir="rtl"] .about-copy .lead,
html[dir="rtl"] .tech-copy .tech-highlight,
html[dir="rtl"] .expertise-item h3,
html[dir="rtl"] .timeline h3 {
  letter-spacing: -0.045em;
}

html[dir="rtl"] .display-heading em,
html[dir="rtl"] .statement blockquote strong,
html[dir="rtl"] .contact h2 em {
  font-family: Tahoma, Arial, sans-serif;
}

html[dir="rtl"] .metric-block strong > span {
  margin-right: 0;
  margin-left: 2px;
}

html[dir="rtl"] .metric-block strong em {
  margin-right: 9px;
  margin-left: 0;
  font-size: 18px;
}

html[dir="rtl"] .growth-flow i {
  transform: scaleX(-1);
}

html[dir="rtl"] .statement blockquote {
  letter-spacing: -0.04em;
  text-transform: none;
}

html[dir="rtl"] .tech-stack {
  justify-content: flex-start;
}

html[dir="rtl"] .case-body > div {
  border-right: 0;
  border-left: 1px solid rgba(10, 10, 9, 0.17);
}

html[dir="rtl"] .case-body > div:last-child {
  border-left: 0;
}

html[dir="rtl"] .case-study > footer {
  padding-right: 30px;
  padding-left: 80px;
}

html[dir="rtl"] .case-study footer i {
  right: auto;
  left: 28px;
}

html[dir="rtl"] .timeline {
  padding-right: 35px;
  padding-left: 0;
}

html[dir="rtl"] .timeline::before {
  right: 4px;
  left: auto;
}

html[dir="rtl"] .timeline-dot {
  right: -35px;
  left: auto;
}

html[dir="rtl"] .contact-details {
  border-right: 1px solid rgba(10, 10, 9, 0.25);
  border-left: 0;
  text-align: right;
}

html[dir="rtl"] .contact-details > div {
  border-right: 0;
  border-left: 1px solid rgba(10, 10, 9, 0.25);
}

html[dir="rtl"] .back-top span {
  margin-right: 7px;
  margin-left: 0;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes blink {
  50% { opacity: 0.25; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes rotate-ring {
  to { transform: rotate(360deg); }
}

@keyframes rotate-ring-reverse {
  to { transform: rotate(-360deg); }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 80px;
  }

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

  .main-nav {
    gap: 18px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 65px);
  }

  .hero-layout {
    grid-template-columns: 1fr minmax(330px, 0.62fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(57px, 7.2vw, 82px);
  }

  .growth-visual {
    min-height: 490px;
  }

  .principle-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .principle:nth-child(4),
  .principle:nth-child(5) {
    min-height: 300px;
  }

  .case-body {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-body > div:nth-child(2) {
    border-right: 0;
  }

  .case-body > div:nth-child(n+3) {
    border-top: 1px solid rgba(10, 10, 9, 0.17);
  }
}

@media (max-width: 900px) {
  .site-header.scrolled {
    height: 70px;
  }

  .main-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    visibility: hidden;
    padding: 130px 8vw 45px;
    align-items: stretch;
    justify-content: center;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateY(-18px);
    transition: visibility 0.35s, opacity 0.35s ease, transform 0.35s ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a {
    display: flex;
    padding: 15px 0;
    align-items: baseline;
    gap: 20px;
    color: var(--paper);
    border-bottom: 1px solid var(--line);
    font-size: clamp(34px, 7vw, 60px);
    font-weight: 750;
    letter-spacing: -0.055em;
    line-height: 1;
    text-transform: none;
  }

  .main-nav > a:first-of-type {
    border-top: 1px solid var(--line);
  }

  .main-nav > a span {
    display: block;
    color: var(--accent);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.08em;
  }

  .main-nav > a::after {
    display: none;
  }

  .mobile-nav-label {
    display: block;
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .mobile-nav-footer {
    display: flex;
    margin-top: auto;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 9px 17px;
    color: var(--muted-2);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    place-items: center;
  }

  .header-actions .text-cta {
    display: none;
  }

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

  .hero h1 {
    max-width: 800px;
    font-size: clamp(65px, 10vw, 94px);
  }

  .hero-intro {
    max-width: 650px;
  }

  .growth-visual {
    min-height: 530px;
    margin-top: 25px;
  }

  .growth-flow {
    margin-top: 45px;
    padding-block: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .growth-flow i {
    transform: rotate(90deg);
  }

  html[dir="rtl"] .growth-flow i {
    transform: rotate(-90deg);
  }

  .proof-layout,
  .two-col-heading,
  .tech-heading,
  .philosophy-heading {
    grid-template-columns: 1fr;
  }

  .proof-layout,
  .two-col-heading {
    gap: 60px;
  }

  .about-copy {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .statement {
    margin-top: 100px;
  }

  .expertise-layout,
  .experience-layout {
    grid-template-columns: 1fr;
  }

  .expertise-intro,
  .experience-heading {
    position: static;
  }

  .expertise-list,
  .timeline {
    margin-top: 30px;
  }

  .tech-layout {
    grid-template-columns: 1fr;
  }

  .tech-system {
    min-height: 550px;
  }

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

  .principle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    min-height: 260px;
    padding-block: 50px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 72px;
  }

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

  .section-pad {
    padding-block: 85px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(52px, 16.2vw, 75px);
    line-height: 0.9;
  }

  .eyebrow {
    max-width: 320px;
    align-items: flex-start;
    font-size: 8px;
    line-height: 1.8;
  }

  .eyebrow > span {
    margin-top: 7px;
  }

  .hero-intro {
    margin-top: 28px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .growth-visual {
    min-height: 430px;
    padding: 20px;
  }

  .metric-block {
    margin-top: 70px;
  }

  .metric-block strong b {
    font-size: 82px;
  }

  .metric-block strong em {
    font-size: 18px;
  }

  .data-chart {
    height: 155px;
  }

  .visual-status {
    right: 20px;
  }

  .display-heading {
    font-size: clamp(43px, 13vw, 62px);
  }

  .proof-layout,
  .two-col-heading {
    gap: 45px;
  }

  .giant-stat {
    font-size: clamp(118px, 39vw, 205px);
  }

  .proof-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .platform-strip {
    margin-top: 70px;
  }

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

  .statement {
    min-height: 430px;
    margin-top: 75px;
    padding: 35px 25px;
  }

  .statement blockquote {
    margin-top: 65px;
    font-size: clamp(37px, 10.8vw, 52px);
  }

  .statement-orbit {
    right: -300px;
  }

  .expertise-layout,
  .experience-layout {
    gap: 60px;
  }

  .expertise-item {
    min-height: 270px;
    padding-block: 32px;
    grid-template-columns: 37px 1fr;
    gap: 10px;
  }

  .expertise-item .item-arrow {
    display: none;
  }

  .expertise-item:hover {
    padding-inline: 5px;
  }

  .tech-layout {
    margin-top: 60px;
    gap: 45px;
  }

  .tech-system {
    min-height: 390px;
    transform: scale(0.78);
    margin: -35px -80px;
  }

  .tech-stack {
    margin-top: 45px;
  }

  .case-list {
    margin-top: 60px;
  }

  .case-study > header {
    min-height: 235px;
    grid-template-columns: 1fr;
  }

  .case-study > header > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .case-study h3 {
    margin-top: 55px;
  }

  .case-study header > p {
    margin-top: 15px;
  }

  .case-body {
    grid-template-columns: 1fr;
  }

  .case-body > div {
    min-height: 145px;
    border-right: 0;
  }

  .case-body p {
    margin-top: 25px;
  }

  .case-study > footer {
    padding: 25px 65px 25px 24px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline {
    padding-left: 28px;
  }

  html[dir="rtl"] .timeline {
    padding-right: 28px;
    padding-left: 0;
  }

  .timeline li {
    min-height: 250px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .timeline-dot {
    left: -28px;
  }

  html[dir="rtl"] .timeline-dot {
    right: -28px;
    left: auto;
  }

  .principle-grid {
    margin-top: 65px;
    grid-template-columns: 1fr;
  }

  .principle,
  .principle:nth-child(4),
  .principle:nth-child(5) {
    min-height: 245px;
  }

  .principle h3 {
    margin-top: 65px;
  }

  .contact h2 {
    margin-top: 45px;
    font-size: clamp(57px, 17.5vw, 83px);
  }

  .contact-details {
    margin-top: 70px;
    grid-template-columns: 1fr;
  }

  .footer-top nav {
    flex-wrap: wrap;
  }

  .footer-bottom {
    min-height: 115px;
    padding-block: 25px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

  .chart-line {
    stroke-dashoffset: 0;
  }
}
