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

:root {
  --bg-dark: #08090b;
  --max-width: 1300px;
  --text: #ffffff;
  --text-muted: #9ca3af;
  --bg-light: rgba(255, 255, 255, 0.1);
  --accent-green: #22c55e;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --bg-alt: #151616;
}

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'SF Pro Text',
    'Inter',
    sans-serif;
  position: relative;
  color: var(--text);
  background-color: var(--bg-dark);
}

.page {
  width: 100%;
  max-width: var(--max-width);
  padding: 24px 24px 64px;
  margin: 0 auto;
}

.hero {
  background-image: url('https://www.mintlify.com/hero/bg-light.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  min-height: 100vh;
}

.btn {
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

/*  **************************************************** HEADER ********************************************** */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 10px 18px;
  margin-bottom: 40px;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--bg-dark);
}

.logo {
  width: 104px;
  height: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.nav-link {
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.nav-link:hover {
  color: var(--text);
  border-radius: 50px;
  background-color: var(--bg-light);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-muted {
  color: var(--text-subtle);
  border-radius: 50px;
  background-color: var(--bg-light);
}

/**************************************************** HERO SECTION ********************************************** */

.hero-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.hero-title {
  text-align: center;
  font-size: 50px;
}

.hero-subtitle {
  text-align: center;
  font-size: 18px;
}

.hero-img-container {
  width: 100%;
  text-align: center;
  margin-top: 90px;
}

.hero-img-container img {
  border-radius: 10px;
}

/**************************************************** PARTNER LOGOS ********************************************** */

#partner-logos {
  margin: 80px 0;
}

.logos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  place-items: center;
  padding: 0 120px;
}

.logos-container img {
  height: 50px;
  width: 120px;
  object-fit: contain;
  object-position: center;
}

/**************************************************** FEATURES ********************************************** */

#features {
  margin-bottom: 60px;
}

.flex-container-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-title {
  font-size: 40px;
  margin-bottom: 10px;
}

.feature-subtitle {
  line-height: 24px;
  width: 50%;
  color: var(--text-muted);
}

.feature-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}

.row-one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.feature-box {
  padding: 20px;
  border-radius: 15px;
  border: 1px solid var(--border-subtle);
  width: 450px;
  height: 550px;
}

.text-brand {
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
}

.text-main {
  font-size: 24px;
  line-height: 31px;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.24px;
}

.text-sub {
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 40px;
}

.feature-img img {
  width: 100%;
}

.img-one {
  width: 100%;
}

.row-two {
  width: 76%;
}

.row-box {
  padding: 20px;
  border-radius: 15px;
  border: 1px solid var(--border-subtle);
}

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

/**************************************************** ENTERPRISE FEATURES ********************************************** */

#enterprise-feature {
  background-color: var(--bg-alt);
}

.enterprise-feature-boxes {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 96px clamp(20px, 10vw, 140px);
  width: 100%;
  margin: 0 auto;
  max-width: var(--max-width);
}

.flex-div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fs-12 {
  font-size: 12px;
}

.section-title {
  line-height: 110%;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.8px;
  font-size: 40px;
}

.light-text {
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 16px;
}

.btn {
  width: auto;
  padding: 8px 12px;
  border-radius: 50px;
  border: none;
  margin: 0 2px;
  cursor: pointer;
}

.explore-btn {
  font-weight: 500;
  height: 40px;
}

.explore-btn:hover {
  background-color: var(--text-muted);
}

.size-24 {
  height: 24px;
}

.blocks {
  padding: 96px clamp(20px, 10vw, 140px);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin: 24px 0;
  padding-top: 0;
  max-width: var(--max-width);
}

.block-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 26px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.block-subtitle {
  line-height: 24px;
  color: var(--text-muted);
}

.block-svg svg {
  color: var(--accent-green);
}

.anthropic-feature-img {
  width: 100%;
  margin: 0 auto;
  max-width: var(--max-width);
  text-align: center;
}

.anthropic-feature-img img {
  object-fit: cover;
  object-position: center;
  height: 518px;
}

.dark-logos-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 35px 155px;
}

.dark-logos-container img {
  height: 50px;
  width: 120px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%) brightness(0.7);
  opacity: 0.8;
}

/**************************************************** FOOTER ********************************************** */

footer {
  background-color: var(--bg-dark);
  /* border-top: 1px solid var(--border-subtle); */
  /* margin-top: 80px; */
}

.footer-wrapper {
  width: 100%;
  padding: 80px clamp(20px, 10vw, 140px) 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-div {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* DIV 1: Logo + Social Links */
.footer-div-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  width: 120px;
  flex-shrink: 0;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* DIV 2: Footer Links Grid */
.footer-div-2 {
  width: 100%;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--accent-green);
}

/* DIV 3: Security Badge */
.footer-div-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 12px;
}

.security-text {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.soc-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background-color: transparent;
  flex-shrink: 0;
}

.soc-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.soc-number {
  font-size: 11px;
  color: var(--text);
  font-weight: 600;
}

/* DIV 4: Status + Copyright */
.footer-div-4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  background-color: var(--bg-alt);
  padding: 10px;
  border-radius: 20px;
  font-weight: 900;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  display: inline-block;
  flex-shrink: 0;
}

.status-text {
  color: var(--text-muted);
  font-size: 13px;
}

.copyright {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

.footer-icon:hover {
  color: var(--text);
}

.footer-icon svg {
  width: 20px;
  height: 20px;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
}

.theme-toggle:hover {
  color: var(--text);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}
