:root {
  --primary-navy: #071d37;
  --dark-navy: #020d1d;
  --deep-navy: #04162b;
  --orange: #f0542d;
  --orange-light: #ff7855;
  --pink: #d52f67;
  --white: #ffffff;
  --text-light: #dce7f4;
  --text-muted: #9cafc4;
  --border-color: rgba(255, 255, 255, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--dark-navy);
  font-family:
    Arial,
    Helvetica,
    sans-serif;
}

* {
  box-sizing: border-box;
}

.about-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 60px 24px 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(240, 84, 45, 0.12),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 75%,
      rgba(213, 47, 103, 0.12),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #020d1d 0%,
      #071d37 52%,
      #031326 100%
    );
}

.about-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    );
  background-size: 70px 70px;

  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );
}

.about-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.about-glow-one {
  width: 370px;
  height: 370px;
  top: -170px;
  left: -130px;
  background: rgba(240, 84, 45, 0.26);
}

.about-glow-two {
  width: 430px;
  height: 430px;
  right: -170px;
  bottom: -180px;
  background: rgba(213, 47, 103, 0.2);
}

.about-container {
  position: relative;
  z-index: 2;
  width: min(1250px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 90px;
}

.about-content {
  color: var(--white);
}

.about-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(240, 84, 45, 0.48);
  border-radius: 50px;
  background: rgba(240, 84, 45, 0.1);
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.about-content h1 {
  max-width: 720px;
  margin: 0 0 25px;
  color: var(--white);
  font-size: clamp(32px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -2.5px;
}

.about-content h1 span {
  display: block;
  background: linear-gradient(
    90deg,
    var(--orange-light),
    var(--pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-intro {
  max-width: 720px;
  margin: 0 0 32px;
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.8;
}

.about-description {
  display: grid;
  gap: 18px;
}

.about-description p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
}

.about-description strong {
  color: var(--white);
  font-weight: 700;
}

.about-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 17px;
  margin-top: 30px;
  padding: 21px 22px;
  border: 1px solid rgba(240, 84, 45, 0.26);
  border-radius: 17px;
  background:
    linear-gradient(
      135deg,
      rgba(240, 84, 45, 0.1),
      rgba(213, 47, 103, 0.05)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.16);
}

.about-highlight-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  border: 1px solid rgba(240, 84, 45, 0.4);
  background: rgba(240, 84, 45, 0.12);
}

.about-highlight-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--orange-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-highlight p {
  margin: 0;
  color: #d7e2ef;
  font-size: 14px;
  line-height: 1.7;
}

.about-button {
  width: fit-content;
  min-height: 56px;
  margin-top: 30px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    var(--orange),
    var(--orange-light)
  );
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(240, 84, 45, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.about-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 21px 45px rgba(240, 84, 45, 0.36);
}

.about-button:hover svg {
  transform: translateX(5px);
}



.about-visual {
  position: relative;
  min-height: 750px;
  display: grid;
  place-items: center;
}

.visual-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 84, 45, 0.24);
}

.visual-orbit-one {
  width: 470px;
  height: 470px;
  animation: rotateOrbit 20s linear infinite;
}

.visual-orbit-two {
  width: 380px;
  height: 380px;
  border-color: rgba(213, 47, 103, 0.26);
  animation: rotateOrbitReverse 17s linear infinite;
}

.visual-orbit-three {
  width: 285px;
  height: 285px;
  border-color: rgba(255, 255, 255, 0.1);
}

.visual-orbit-one::before,
.visual-orbit-two::before,
.visual-orbit-three::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--orange);
  box-shadow:
    0 0 10px var(--orange),
    0 0 22px rgba(240, 84, 45, 0.8);
}

.visual-orbit-two::before {
  background: var(--pink);
  box-shadow:
    0 0 10px var(--pink),
    0 0 22px rgba(213, 47, 103, 0.8);
}

.visual-orbit-three::before {
  background: var(--white);
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.85),
    0 0 22px rgba(255, 255, 255, 0.5);
}

.visual-core {
  position: relative;
  z-index: 3;
  width: 245px;
  height: 245px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 84, 45, 0.36);
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(
      circle at 35% 25%,
      rgba(240, 84, 45, 0.2),
      transparent 40%
    ),
    linear-gradient(
      145deg,
      rgba(9, 38, 70, 0.96),
      rgba(2, 13, 29, 0.98)
    );
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.38),
    inset 0 0 40px rgba(240, 84, 45, 0.07),
    0 0 65px rgba(240, 84, 45, 0.12);
}

.visual-core-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(240, 84, 45, 0.42);
  background: rgba(240, 84, 45, 0.12);
}

.visual-core-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--orange-light);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-core span {
  margin-bottom: 8px;
  color: var(--orange-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
}

.visual-core strong {
  max-width: 180px;
  color: var(--white);
  font-size: 23px;
  line-height: 1.25;
}

.visual-card {
  position: absolute;
  z-index: 4;
  min-width: 220px;
  min-height: 82px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(5, 24, 46, 0.9);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.visual-card > span {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    var(--orange),
    var(--pink)
  );
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.visual-card div {
  display: grid;
  gap: 5px;
}

.visual-card small {
  color: #7f94ab;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.visual-card strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.visual-card-one {
  top: 100px;
  left: 0;
  animation: floatCard 4.5s ease-in-out infinite;
}

.visual-card-two {
  top: 255px;
  right: -15px;
  animation: floatCard 5s ease-in-out infinite 0.5s;
}

.visual-card-three {
  bottom: 85px;
  left: 25px;
  animation: floatCard 4.8s ease-in-out infinite 1s;
}

.visual-dots {
  position: absolute;
  width: 140px;
  height: 140px;
  opacity: 0.35;
  background-image: radial-gradient(
    circle,
    var(--orange) 2px,
    transparent 2.5px
  );
  background-size: 15px 15px;
}

.visual-dots-one {
  top: 25px;
  right: 10px;
}

.visual-dots-two {
  bottom: 20px;
  right: 55px;
  background-image: radial-gradient(
    circle,
    var(--pink) 2px,
    transparent 2.5px
  );
}

/* Bottom strip */

.about-bottom-strip {
  position: relative;
  z-index: 3;
  width: min(1220px, calc(100% - 48px));
  margin: 90px auto 0;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: rgba(5, 24, 46, 0.88);
  box-shadow:
    0 -15px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.about-strip-item {
  text-align: center;
}

.about-strip-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 15px;
}

.about-strip-item span {
  display: block;
  color: #8599af;
  font-size: 12px;
  line-height: 1.5;
}

.about-strip-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(240, 84, 45, 0.55),
    transparent
  );
}

@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateOrbitReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1050px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-content {
    text-align: center;
  }

  .about-content h1,
  .about-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .about-description {
    max-width: 820px;
    margin: 0 auto;
    text-align: left;
  }

  .about-highlight {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .about-button {
    margin-left: auto;
    margin-right: auto;
  }

  .about-visual {
    width: min(650px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 800px) {
  .about-section {
    padding: 85px 20px 0;
  }

  .about-bottom-strip {
    width: min(600px, calc(100% - 40px));
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 22px;
  }

  .about-strip-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(240, 84, 45, 0.5),
      transparent
    );
  }
}

@media (max-width: 620px) {
  .about-section {
    padding: 70px 16px 0;
  }

  .about-content h1 {
    font-size: 41px;
    letter-spacing: -1.4px;
  }

  .about-intro {
    font-size: 16px;
  }

  .about-description p {
    font-size: 14px;
  }

  .about-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-highlight-icon {
    margin: 0 auto;
  }

  .about-button {
    width: 100%;
  }

  .about-visual {
    min-height: 600px;
    transform: scale(0.88);
    transform-origin: center;
  }

  .visual-orbit-one {
    width: 390px;
    height: 390px;
  }

  .visual-orbit-two {
    width: 315px;
    height: 315px;
  }

  .visual-orbit-three {
    width: 245px;
    height: 245px;
  }

  .visual-core {
    width: 210px;
    height: 210px;
  }

  .visual-card {
    min-width: 190px;
  }

  .visual-card-one {
    left: -5px;
  }

  .visual-card-two {
    right: -5px;
  }

  .visual-card-three {
    left: 5px;
  }

  .about-bottom-strip {
    width: calc(100% - 32px);
    margin-top: 35px;
  }
}

@media (max-width: 430px) {
  .about-content h1 {
    font-size: 36px;
  }

  .about-visual {
    min-height: 560px;
    transform: scale(0.75);
    margin-top: -45px;
    margin-bottom: -55px;
  }
}