@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  font-display: swap;
  src: url(./assets/fonts/roboto-500.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  font-display: swap;
  src: url(./assets/fonts/roboto-700.ttf) format('truetype');
}

:root {
  --ca-red: #df1f00;
  --ca-red-dark: #b91600;
  --ca-ink: #121212;
  --ca-muted: #686868;
  --ca-line: rgba(18, 18, 18, 0.12);
  --ca-paper: #f7f7f4;
  --ca-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ca-paper);
  color: var(--ca-ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.ca-industry-hero,
.ca-industry-hero * {
  box-sizing: border-box;
}

.ca-industry-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(223, 31, 0, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(223, 31, 0, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--ca-paper);
}

.ca-industry-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 760px;
  height: 760px;
  top: -390px;
  right: -260px;
  border: 130px solid rgba(223, 31, 0, 0.06);
  border-radius: 50%;
}


.ca-industry-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1440px);
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr;
}

.ca-industry-header {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--ca-line);
}

.ca-industry-brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.ca-industry-logo {
  display: block;
  width: 132px;
  height: auto;
}

.ca-industry-partner {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid var(--ca-line);
  color: var(--ca-muted);
  font-size: 13px;
  line-height: 1.25;
}



.ca-industry-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(500px, 1.06fr);
  align-items: center;
  gap: clamp(24px, 3.8vw, 60px);
  padding: clamp(42px, 6.5vh, 86px) 0 clamp(30px, 5vh, 62px);
}

.ca-industry-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.ca-industry-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 32px;
  color: var(--ca-red);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ca-industry-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.ca-industry-title {
  max-width: 790px;
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 3.8vw, 58px);
  line-height: 1.06;
  letter-spacing: -.045em;
  font-weight: 500;
}

.ca-industry-title-line {
  display: block;
  white-space: nowrap;
}

.ca-industry-title-line + .ca-industry-title-line {
  margin-top: .12em;
}

.ca-industry-title .ca-industry-range {
  display: block;
  margin: .2em 0;
  color: var(--ca-red);
  font-weight: 700;
}

.ca-industry-title .ca-industry-initial {
  color: var(--ca-red);
  font-weight: inherit;
}

.ca-industry-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #464646;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.48;
}

.ca-industry-action {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.ca-industry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 64px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--ca-red);
  box-shadow: 0 14px 30px rgba(223,31,0,.22);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 800;
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.ca-industry-button:hover {
  transform: translateY(-2px);
  background: var(--ca-red-dark);
  box-shadow: 0 18px 36px rgba(223,31,0,.28);
}

.ca-industry-button:focus-visible {
  outline: 3px solid rgba(223,31,0,.28);
  outline-offset: 4px;
}

.ca-industry-button-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -10px;
  border-radius: 50%;
  background: #fff;
  color: var(--ca-red);
  font-size: 17px;
}

.ca-industry-note {
  max-width: 190px;
  margin: 0;
  color: var(--ca-muted);
  font-size: 12px;
  line-height: 1.45;
}

.ca-industry-visual {
  position: relative;
  align-self: stretch;
  min-height: 590px;
}

.ca-industry-disc {
  position: absolute;
  width: min(40vw, 620px);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, #ff735c 0, #ed3316 28%, #c81700 74%, #a91500 100%);
  box-shadow: 0 36px 70px rgba(154, 24, 2, .2);
}

.ca-industry-disc::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: inherit;
}

.ca-industry-statue {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -64px;
  display: block;
  width: min(47vw, 720px);
  max-width: none;
  height: auto;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  -webkit-clip-path: inset(2px);
  clip-path: inset(2px);
  transform: translateX(-51%);
  filter: drop-shadow(0 24px 22px rgba(39,49,58,.18));
  user-select: none;
  pointer-events: none;
}

.ca-industry-orbit-benefits {
  position: absolute;
  z-index: 4;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.ca-industry-orbit-benefit {
  position: absolute;
  width: 168px;
  height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 19px;
  border: 1.5px solid rgba(223,31,0,.58);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,.98) 48%, rgba(255,244,241,.94) 100%);
  color: var(--ca-ink);
  text-align: center;
  font-size: 15px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
  box-shadow: 0 18px 44px rgba(26,26,26,.13);
  backdrop-filter: blur(14px);
  will-change: transform;
  animation: ca-industry-orbit-hop 7.5s ease-in-out infinite;
}

.ca-industry-orbit-benefit::before {
  display: none;
}

.ca-industry-orbit-benefit:nth-child(1) {
  left: 0;
  top: 52%;
  animation-delay: .64s;
}

.ca-industry-orbit-benefit:nth-child(2) {
  left: 0;
  top: 15%;
  animation-delay: 0s;
}

.ca-industry-orbit-benefit:nth-child(2)::before {
  content: "₿";
}

.ca-industry-orbit-benefit:nth-child(3) {
  left: calc(50% - 84px);
  top: -12%;
  animation-delay: .16s;
}

.ca-industry-orbit-benefit:nth-child(3)::before {
  content: "₸";
}

.ca-industry-orbit-benefit:nth-child(4) {
  right: 0;
  top: 15%;
  animation-delay: .32s;
}

.ca-industry-orbit-benefit:nth-child(4)::before {
  content: "%";
}

.ca-industry-orbit-benefit:nth-child(5) {
  right: 0;
  top: 52%;
  animation-delay: .48s;
}

.ca-industry-orbit-benefit:nth-child(5)::before {
  content: "✓";
}

@keyframes ca-industry-orbit-hop {
  0%, 18%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 44px rgba(26,26,26,.13);
  }
  8% {
    transform: translateY(-3px) scale(1.045);
    box-shadow: 0 25px 50px rgba(223,31,0,.18);
  }
}

.ca-industry-benefits {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--ca-line);
}

.ca-industry-benefit {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-right: 1px solid var(--ca-line);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.ca-industry-benefit:first-child {
  padding-left: 0;
}

.ca-industry-benefit:last-child {
  padding-right: 0;
  border-right: 0;
}

.ca-industry-benefit-num {
  flex: 0 0 auto;
  color: var(--ca-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

@media (max-width: 1120px) {
  .ca-industry-main {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .7fr);
  }

  .ca-industry-visual {
    min-height: 500px;
  }

  .ca-industry-disc {
    width: min(34vw, 520px);
  }

  .ca-industry-statue {
    width: min(40vw, 610px);
  }

  .ca-industry-orbit-benefit {
    width: 154px;
    height: 154px;
    padding: 17px;
    font-size: 13px;
    border-radius: 50%;
  }

  .ca-industry-orbit-benefit::before {
    margin-bottom: 8px;
  }

  .ca-industry-orbit-benefit:nth-child(1) {
    left: 0;
    top: 52%;
  }

  .ca-industry-orbit-benefit:nth-child(2) {
    left: 0;
    top: 15%;
  }

  .ca-industry-orbit-benefit:nth-child(3) {
    left: calc(50% - 77px);
    top: -10%;
  }

  .ca-industry-orbit-benefit:nth-child(4) {
    right: 0;
    top: 15%;
  }

  .ca-industry-orbit-benefit:nth-child(5) {
    right: 0;
    top: 52%;
  }

  .ca-industry-benefit {
    padding-inline: 14px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {

  .ca-industry-shell {
    width: min(100% - 32px, 760px);
  }

  .ca-industry-header {
    min-height: 80px;
  }

  .ca-industry-partner {
    display: none;
  }

  .ca-industry-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 46px;
  }

  .ca-industry-copy {
    max-width: 700px;
  }

  .ca-industry-title {
    font-size: clamp(38px, 6vw, 48px);
  }

  .ca-industry-visual {
    min-height: 520px;
    margin: 18px 0 0;
  }

  .ca-industry-disc {
    width: min(68vw, 470px);
  }

  .ca-industry-statue {
    width: min(78vw, 560px);
    bottom: -48px;
  }

  .ca-industry-orbit-benefit {
    width: 150px;
    height: 150px;
    padding: 16px;
    font-size: 12px;
  }

  .ca-industry-orbit-benefit:nth-child(1) {
    left: 2%;
    top: 52%;
  }

  .ca-industry-orbit-benefit:nth-child(2) {
    left: 2%;
    top: 15%;
  }

  .ca-industry-orbit-benefit:nth-child(3) {
    left: calc(50% - 75px);
    top: -8%;
  }

  .ca-industry-orbit-benefit:nth-child(4) {
    right: 2%;
    top: 15%;
  }

  .ca-industry-orbit-benefit:nth-child(5) {
    right: 2%;
    top: 52%;
  }

  .ca-industry-benefits {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 22px;
  }

  .ca-industry-benefit,
  .ca-industry-benefit:first-child,
  .ca-industry-benefit:last-child {
    min-height: 78px;
    padding: 14px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--ca-line);
  }

  .ca-industry-benefit:nth-child(odd) {
    border-right: 1px solid var(--ca-line);
    padding-left: 0;
  }
}

@media (max-width: 560px) {

  .ca-industry-shell {
    width: min(100% - 28px, 520px);
  }

  .ca-industry-header {
    min-height: 72px;
  }

  .ca-industry-logo {
    width: 104px;
  }


  .ca-industry-main {
    gap: 20px;
    padding: 34px 0 18px;
  }

  .ca-industry-eyebrow {
    margin-bottom: 24px;
    font-size: 10px;
  }

  .ca-industry-title {
    font-size: clamp(24px, 7.5vw, 32px);
    line-height: 1.04;
  }

  .ca-industry-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .ca-industry-action {
    display: block;
    margin-top: 26px;
  }

  .ca-industry-button {
    width: 100%;
    min-height: 60px;
  }

  .ca-industry-note {
    max-width: none;
    margin-top: 14px;
    text-align: center;
  }

  .ca-industry-visual {
    min-height: 380px;
    margin: 18px 0 0;
  }

  .ca-industry-disc {
    width: min(82vw, 390px);
  }

  .ca-industry-statue {
    width: min(98vw, 500px);
    bottom: -20px;
  }

  .ca-industry-orbit-benefit {
    width: 122px;
    height: 122px;
    padding: 12px;
    font-size: 10px;
    line-height: 1.18;
    border-radius: 50%;
  }

  .ca-industry-orbit-benefit::before {
    width: 26px;
    height: 26px;
    margin-bottom: 6px;
    font-size: 14px;
  }

  .ca-industry-orbit-benefit:nth-child(1) {
    left: 1%;
    top: 52%;
  }

  .ca-industry-orbit-benefit:nth-child(2) {
    left: 1%;
    top: 15%;
  }

  .ca-industry-orbit-benefit:nth-child(3) {
    left: calc(50% - 61px);
    top: -6%;
  }

  .ca-industry-orbit-benefit:nth-child(4) {
    right: 1%;
    top: 15%;
  }

  .ca-industry-orbit-benefit:nth-child(5) {
    right: 1%;
    top: 52%;
  }

  .ca-industry-benefits {
    grid-template-columns: 1fr;
  }

  .ca-industry-benefit,
  .ca-industry-benefit:first-child,
  .ca-industry-benefit:last-child,
  .ca-industry-benefit:nth-child(odd) {
    min-height: 60px;
    padding: 12px 0;
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ca-industry-button {
    transition: none;
  }

  .ca-industry-orbit-benefit {
    animation: none;
  }
}
.ca-industry-title .ca-industry-audience {
  white-space: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}
