/* ============ TCW Design System ============ */
:root {
  --tcw-bg: #020233;
  --tcw-bg-2: #050740;
  --tcw-primary: #01AEFF;
  --tcw-secondary: #011F96;
  --tcw-accent: #016899;
  --tcw-text: #D1D1D3;
  --tcw-white: #FFFFFF;
  --tcw-offwhite: #F7F8FA;
  --tcw-dark: #414651;
  --tcw-muted: #8A8CB0;
  --tcw-border: rgba(255, 255, 255, 0.08);
  --tcw-card: rgba(255, 255, 255, 0.03);
  --tcw-card-2: rgba(1, 31, 150, 0.25);
  --grad-hero: radial-gradient(1200px 600px at 50% -100px, rgba(1, 174, 255, 0.25), transparent 60%),
    radial-gradient(900px 500px at 80% 40%, rgba(1, 31, 150, 0.35), transparent 60%);
  --grad-blue: linear-gradient(135deg, #0a2a8a 0%, #01AEFF 100%);
  --grad-card: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

* {
  box-sizing: border-box
}

html {
  overflow-x: hidden;
}

html,
body {
  background: var(--tcw-bg);
  color: var(--tcw-text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--tcw-white);
  font-weight: 700;
}

a {
  color: var(--tcw-primary);
  text-decoration: none
}

a:hover {
  color: #4dc5ff
}

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

#smooth-content {
  overflow: visible;
  width: 100%;
}

/* Buttons */
.btn-primary-tcw,
.btn-outline-tcw {
  background: linear-gradient(90deg, var(--tcw-primary) -3.25%, #016899 144.72%);
  color: var(--tcw-offwhite);
  border: none;
  font-family: 'Outfit';
  font-weight: 700;
  font-size: 17px;
  line-height: 25px;
  padding: 17px 25px;
  border-radius: 13px;
  transition: transform .15s ease, background .15s ease;
}

.btn-primary-tcw:hover {
  background: linear-gradient(-90deg, var(--tcw-primary) -3.25%, #016899 144.72%);
  color: var(--tcw-offwhite);
  transform: translateY(-1px);
}

.btn-outline-tcw {
  outline: 1px solid var(--tcw-primary);
  background: transparent;
}

.btn-outline-tcw:hover {
  background: linear-gradient(-90deg, var(--tcw-primary) -3.25%, #016899 144.72%);
  color: var(--tcw-offwhite);
  transform: translateY(-1px);
}

/* ============ Sections ============ */
.section {
  padding: 83px 0;
  position: relative
}

.eyebrow {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--tcw-primary);
  font-family: 'Outfit';
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid #9494945c;
}

.section-title {
  font-size: clamp(26px, 3.4vw, 56px);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.section-lead {
  max-width: 1088px;
  color: var(--tcw-text);
}

/* ============ Hero ============ */
.hero-section {
  padding: 96px 0 60px;
  z-index: 3;
}

.hero-circle {
  position: absolute;
  width: 540px;
  height: 540px;
  left: 0px;
  top: 7px;
  background: rgba(1, 174, 255, 0.4);
  filter: blur(250px);
  z-index: 0;
}

.hero-title {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 900px;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.text-primary-tcw {
  color: var(--tcw-primary)
}

.hero-sub {
  max-width: 720px;
  color: var(--tcw-text);
  font-size: 1rem;
}

/* Inner Pages Hero */
.inner-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/inner-hero-bg.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Icon Cards */
.icon-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 30px 23px;
  height: 100%;
  transition: .3s ease;
}

.icon-card:hover {
  transform: translateY(-3px);
  border-color: var(--tcw-primary);
}

.icon-card_icon_title {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}

.icon-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.icon-card__title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--tcw-white);
  margin-bottom: 12px;
}

.icon-card__description p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
  color: var(--tcw-text);
}

.icon-item h5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 12px
}

.icon-item p {
  color: var(--tcw-text);
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

.cards-row {
  position: relative;
  margin-top: 82px;
  z-index: 1;
}

.cards-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 1px;
  height: 100%;
  max-height: 680px;
  background: linear-gradient(180deg, rgba(14, 14, 60, 1) 0%, rgba(209, 209, 211, 0.5) 49%, rgba(14, 14, 60, 1) 100%);
  z-index: 0;
}

.cards-row::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-width: 1280px;
  height: 1px;
  background: linear-gradient(90deg, rgba(14, 14, 60, 1) 0%, rgba(209, 209, 211, 0.5) 49%, rgba(14, 14, 60, 1) 100%);
  z-index: 0;
}

.int-card {
  padding: 30px 90px 100px 0;
  text-align: center;
}

.int-card.rightSide {
  padding: 30px 20px 100px 100px;
}

.int-card .icon-card__icon {
  width: 65px;
  height: 65px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.int-card h5 {
  font-size: 18px;
  margin-bottom: 12px;
}

.int-card p {
  color: var(--tcw-text);
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

