@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");

:root {
  --bg: #ffffff;
  --fg: #0f172a;
  --card: #ffffff;
  --card-2: rgba(255, 255, 255, 0.78);
  --muted: #f8fafc;
  --muted-2: #eef4fb;
  --muted-fg: #64748b;
  --border: #e2e8f0;
  --primary: #3b82f6;
  --secondary: #16a34a;
  --accent: #ff007f;
  --danger: #ff1464;
  --hero-dot: rgba(150, 150, 150, 0.1);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --overlay: rgba(2, 6, 23, 0.72);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.14);
  --shadow-xl: 0 22px 70px rgba(15, 23, 42, 0.2);
}

html.dark {
  --bg: #0f172a;
  --fg: #f8fafc;
  --card: #162033;
  --card-2: rgba(22, 32, 51, 0.72);
  --muted: #182234;
  --muted-2: #1e293b;
  --muted-fg: #9aa8bc;
  --border: #24324a;
  --glass: rgba(15, 23, 42, 0.62);
  --glass-strong: rgba(15, 23, 42, 0.82);
  --overlay: rgba(2, 6, 23, 0.84);
  --hero-dot: rgba(150, 150, 150, 0.12);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.44);
  --shadow-xl: 0 22px 70px rgba(0, 0, 0, 0.6);
}

* {
  /* box-sizing: border-box;*/
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  transition:
    background-color 0.25s,
    color 0.25s,
    border-color 0.25s;
  overflow-x: clip;
  font-feature-settings:
    "kern" 1,
    "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

p,
li,
span {
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
  letter-spacing: -0.02em;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1600px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 20;
  padding-top: 90px;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  background-image:
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 100%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 15% 100%, rgba(255, 0, 127, 0.06) 0%, transparent 50%);
}
.hero .container,
.hero .center,
.hero .btns {
  position: relative;
  z-index: 30;
  overflow: visible;
}

main,
main > section {
  position: relative;
  z-index: 1;
}

.hero::before,
.texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--hero-dot) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    padding 0.25s ease;
}

.header.scrolled {
  background: var(--glass-strong);
  border-bottom-color: color-mix(in srgb, var(--border) 92%, transparent);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.dark .header.scrolled {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.26);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  transition: padding 0.25s ease;
}

.header.scrolled .nav-wrap {
  padding: 9px 0;
}

.brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

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

.nav a {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--muted-fg);
  font-weight: 500;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.nav a:hover {
  background: color-mix(in srgb, var(--muted) 85%, transparent);
  color: var(--fg);
}

.nav a.active {
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--primary);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-btn,
.menu-btn,
.icon-btn,
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
  background: color-mix(in srgb, var(--bg) 76%, transparent);
  color: var(--fg);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.theme-btn:hover,
.menu-btn:hover,
.icon-btn:hover,
.socials a:hover {
  transform: translateY(-1px);
  background: var(--muted);
}

.menu-btn {
  display: none;
}

.mobile-menu {
  display: none;
  background: var(--glass-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
  padding: 14px;
}

.mobile-menu.open {
  display: grid;
  gap: 8px;
}

.mobile-menu a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--fg);
}

.mobile-menu a.active,
.mobile-menu a:hover {
  background: var(--muted);
  color: var(--primary);
}

.title-xl {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  font-weight: 800;
}

.title-lg {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  font-weight: 800;
}

.title-md {
  font-size: clamp(1.06rem, 1.35vw, 1.38rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-weight: 700;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted-fg);
  max-width: 70ch;
}

.center {
  text-align: center;
}

.center .lead {
  margin-inline: auto;
}

.max-2 {
  max-width: 720px;
  margin-inline: auto;
}

.max-3 {
  max-width: 900px;
  margin-inline: auto;
}

.max-4 {
  max-width: 1040px;
  margin-inline: auto;
}

.gradient-text {
  background: linear-gradient(90deg, #3b82f6, #22c55e, #ff007f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-hero {
  height: min(210px, 18vw);
  margin: 0 auto 28px;
}

#intro {
  text-wrap: balance;
  margin: 0 64px 40px;
  font-size: 1.22rem;
}

.btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 50px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.28);
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--primary) 92%, white);
}

.btn-secondary {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-color: color-mix(in srgb, var(--border) 88%, transparent);
  color: var(--fg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  overflow: visible;
}

.badge-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.badge-line span:first-child {
  width: 32px;
  height: 4px;
  background: var(--primary);
  border-radius: 999px;
}

.alert-panel {
  padding: 28px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--muted) 82%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

.neon {
  color: #22c55e;
}

.dark .neon {
  text-shadow: 0 0 12px rgba(34, 197, 94, 0.35);
}

.diff {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--muted) 82%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

.lucide-circle-x {
  color: #ff1464;
}

.xmark {
  color: var(--danger);
  font-size: 1.4rem;
  line-height: 1;
}

.danger {
  color: var(--danger);
  font-weight: 600;
}

.media-card,
.feature-card,
.download-card {
  position: relative;
  transition:
    transform 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.15),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.media-card:hover,
.feature-card:hover,
.download-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--primary) 20%, var(--border));
}

.media {
  aspect-ratio: 16 / 9;
  background: var(--muted);
  overflow: hidden;
  position: relative;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    opacity 0.3s ease,
    filter 0.3s ease;
}

.media-card:hover .media img,
.feature-card:hover .media img {
  transform: scale(1.05);
}

.caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: color-mix(in srgb, var(--card) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
  color: var(--fg);
  font-size: 0.94rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.28s ease;
}

.media-card:hover .caption {
  transform: translateY(0);
}

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.play-badge {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.92);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease;
}

.play:hover .play-badge {
  transform: scale(1.08);
}

.grid.grid-3 {
  align-items: stretch;
}

.feature-card {
  display: grid;
  grid-template-rows: 1fr 260px;
  height: 100%;
  overflow: hidden;
}

.feature-card .content {
  display: grid;
  grid-template-rows: auto 110px auto;
  align-content: start;
  padding: 28px 28px 0;
  min-height: 0;
}

.feature-card .row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

.feature-card .title-md {
  margin: 0;
  font-size: clamp(1.08rem, 1.28vw, 1.35rem);
  line-height: 1.2;
}

.feature-card .lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-fg);
  max-width: none;
}

.feature-card .caps {
  display: grid;
  gap: 8px;
  margin: 30px 0 40px;
  padding: 0;
}

.feature-card .caps div {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 0.96rem;
  line-height: 1.4;
}

.feature-card .caps svg,
.feature-card .caps .check {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.feature-card .media,
.feature-card .media-video {
  height: 260px;
  min-height: 260px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--muted);
  border-top: 1px solid color-mix(in srgb, var(--border) 82%, transparent);
  border-radius: 0 0 22px 22px;
}

.feature-card .media {
  aspect-ratio: auto;
}

.feature-card .media img,
.feature-card .media video,
.feature-card .media-video img,
.feature-card .media-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feature-card .media-video video {
  pointer-events: none;
  object-position: center center;
}

.media-play {
  position: absolute;
  inset: auto auto 16px 16px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.18s ease;
}

.media-play:hover {
  transform: scale(1.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.1);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 0;
  flex: 0 0 auto;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.check {
  color: var(--primary);
  font-weight: 700;
}

.list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.list li span:last-child {
  font-weight: 500;
  color: var(--fg);
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex: 0 0 auto;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: none;
  border: none;
  color: var(--fg);
  font: inherit;
  font-size: 1.06rem;
  font-weight: 600;
  padding: 22px 0;
  cursor: pointer;
  align-items: center;
}

.faq-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--muted-fg);
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  flex: 0 0 auto;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  max-height: none;
  transition: grid-template-rows 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding-right: 34px;
  color: var(--muted-fg);
}

.faq-a > .faq-inner {
  overflow: hidden;
}

.faq-a p {
  margin: 0 0 20px;
  color: var(--muted-fg);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
  padding-bottom: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Footer */
/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(220px, 0.7fr) minmax(220px, 0.7fr);
  align-items: center;
  gap: 40px;
  padding: 44px 0 28px;
}

.footer-brand {
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 12px;
  min-width: 0;
}

.footer-logo {
  height: 90px !important;
  width: auto;
  display: block;
}

.footer-tagline {
  margin: 0;
  color: var(--muted-fg);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-links {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  min-width: 0;
  padding: 0 28px;
  border-left: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
  border-right: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
}

.footer-links a {
  color: var(--muted-fg);
  font-size: 0.95rem;
  transition: color 0.18s ease;
}

.footer-links a:hover {
  color: var(--fg);
}

.connect {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  gap: 14px;
  min-width: 0;
}

.footer-connect-title {
  margin: 0 !important;
  font-size: 1rem !important;
}

.footer-email {
  margin: 0;
  color: var(--muted-fg);
  font-size: 0.92rem;
  word-break: break-word;
}

.socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.socials a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--muted-fg);
  font-size: 0.84rem;
}

.privacypol {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer .lead {
  font-size: 0.82rem !important;
  line-height: 1.55;
}

.footer nav a,
.footer p:not(.lead) {
  font-size: 0.84rem;
}
.footer-links::before {
  left: 0;
}

.footer-links::after {
  right: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

.modal {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 90;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal.open {
  display: flex;
}

.modal-inner {
  max-width: min(1600px, 96vw);
  max-height: 92vh;
  position: relative;
  width: 100%;
  background: transparent;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
}

.image-shell {
  position: relative;
  border-radius: 24px;
  background: color-mix(in srgb, var(--card) 65%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.image-toolbar {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--card) 58%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  box-shadow: var(--shadow);
}

.zoom-label {
  min-width: 54px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--fg);
}

.image-stage {
  height: min(82vh, 980px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}

.image-stage.dragging {
  cursor: grabbing;
}

.image-stage img {
  max-width: min(92vw, 1500px);
  max-height: 82vh;
  object-fit: contain;
  user-select: none;
  transform-origin: center center;
  will-change: transform;
}

.modal-caption {
  padding: 16px 22px;
  border-top: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  background: color-mix(in srgb, var(--card) 72%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--muted-fg);
}

.modal-caption strong {
  display: block;
  color: var(--fg);
  margin-bottom: 6px;
  font-size: 1rem;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
  z-index: 2000;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-inner {
  width: min(1600px, 96vw);
  max-height: 90vh;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

.video-modal video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  display: block;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.doc-cta {
  padding: 56px 24px;
  display: grid;
  place-items: center;
  min-height: 60vh;
}

.doc-logo {
  height: 96px;
  margin: 0 auto 28px;
}

.legal {
  max-width: 800px;
  padding-top: 8px;
}

.legal p,
.legal li {
  color: var(--muted-fg);
}

.legal h1,
.page-head h1 {
  margin-bottom: 14px;
}

.legal h2 {
  font-size: 1.6rem;
  margin: 34px 0 12px;
}

.divider-top {
  border-top: 1px solid var(--border);
}

.page-head {
  padding: 34px 0 10px;
  border-bottom: 0;
  background: transparent;
}

.page-head .lead {
  color: var(--muted-fg);
  font-size: 1.02rem;
  max-width: 62ch;
}

.page-head.page-compact {
  padding-bottom: 6px;
}

.page-body-tight {
  padding-top: 8px;
}

.page-head .container {
  position: relative;
  z-index: 1;
}

.page-head-profile {
  padding-bottom: 72px;
}

.page-head-profile .lead {
  max-width: 760px;
  margin-inline: auto;
}

.about-copy {
  display: grid;
  gap: 18px;
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}

.about-copy p {
  margin: 0;
}

/* Download cards + dropdown fix */
.download-grid,
.download-grid > *,
.section-tight,
.page-body-tight,
.container.max-4,
.card,
.download-card,
.download-card .content,
.dropdown {
  overflow: visible !important;
}

.download-grid {
  grid-template-columns: minmax(280px, 360px);
  justify-content: center;
  margin-inline: auto;
}

.download-grid .download-card {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}

.download-grid .download-card .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  text-align: center;
}

.download-card {
  position: relative;
  border-radius: 24px;
  overflow: visible !important;
  isolation: isolate;
  z-index: 1;
}

.download-card:hover {
  z-index: 20;
}

.download-card:has(.dropdown.open) {
  z-index: 200;
}

.download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #3b82f6 55%, #60a5fa) top / 100% 4px no-repeat;
  pointer-events: none;
  z-index: 0;
}

.download-card .content {
  position: relative;
  z-index: 1;
  padding-top: 30px;
}

.dropdown {
  position: relative;
  display: inline-block;
  z-index: 2000;
}
.dropdown.open {
  z-index: 3000;
}

.dropdown .menu,
.menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(8px);
  min-width: 264px;
  width: max-content;
  max-width: min(92vw, 320px);
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 99999;
  overflow: visible !important;
  background: color-mix(in srgb, var(--card) 96%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.dropdown.open .menu {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0);
}

.menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--fg);
}

.menu a:hover {
  background: var(--muted);
}

.menu a span,
.menu a svg {
  flex: 0 0 auto;
}

.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.18),
    rgba(59, 130, 246, 0.08)
  );
  border: 1px solid color-mix(in srgb, var(--primary) 24%, var(--border));
  color: var(--primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

.icon-badge.circle {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 10%, var(--card));
  border: 0;
  box-shadow: none;
}

.icon-badge.circle svg {
  width: 32px;
  height: 32px;
}

.req-icon {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  color: var(--muted-fg);
  margin-top: 2px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

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

.icon {
  width: 18px;
  height: 18px;
  display: block;
}

.icon-lg {
  width: 22px;
  height: 22px;
}

@media (max-width: 1100px) {
  .grid.grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 670px;
  }

  .feature-card .content {
    min-height: 360px;
  }

  .feature-card .media,
  .feature-card .media-video {
    height: 240px;
    min-height: 240px;
  }
}

@media (max-width: 980px) {
  .grid-3,
  .grid-2,
  .split {
    grid-template-columns: 1fr;

  }.dropdown .btn{
	  margin-top:20px;
  max-width:100% !important;

  }#homedownload{
   max-width:60% !important;
   
  }#docpg{
     max-width:70% !important;
  }.feature-card{
  grid-template-rows:1fr 200px;

  }.grid-3{
    gap: 32px;
  }.dropdown.open .menu {
  transform: translateX(24%) !important;
}.hero {
  overflow: visible;
  z-index: 20;
}#pfaq{
display: block!important; flex-wrap: nowrap;
}#pfaq > a {
 margin:0 !important;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .dropdown {
  position: relative;
  z-index: 500;
}

.hero .dropdown .menu,
.hero .menu {
  z-index: 9999;
}

.footer-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 24px;
  padding: 34px 0 20px;
}

.footer-brand,
.connect,
.footer-links {
  justify-items: center;
}

.footer-links {
  padding: 0;
  border-left: 0;
  border-right: 0;
}

.footer-bottom {
  justify-content: center;
  text-align: center;
}

  .nav {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .logo-hero {
    height: 120px;
  }

  .section {
    padding: 72px 0;
  }

  .image-toolbar {
    top: auto;
    right: 50%;
    bottom: 12px;
    transform: translateX(50%);
  }

  .page-head {
    padding-top: 26px;
    padding-bottom: 6px;
  }

  .page-head-profile {
    padding-bottom: 40px;
  }

  .dropdown .menu,
  .menu {
    left: 0;
    transform: translateY(0);
  }

  .dropdown.open .menu {
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .grid.grid-3 {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card .content {
    min-height: auto;
    padding: 22px 22px 0;
  }

  .feature-card .caps {
    margin-top: 22px;
  }

  .feature-card .media,
  .feature-card .media-video {
    height: 220px;
    min-height: 220px;
  }

  .feature-card .lead {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .feature-card .caps div {
    font-size: 0.93rem;
  }

  .about-copy.in {
    font-size: 0.74rem !important;
    text-align: center;
    text-wrap: pretty !important;
    margin: 0 40px;
  }

  #portfolio > a {
    max-width: 70% !important;
    font-size: 0.9rem !important;
  }

  #intro {
    text-wrap: balance;
    margin: 0 20px 32px;
    font-size: 0.94rem !important;
  }

  .btn-primary,
  .btn-secondary {
    max-width: 60% !important;
    font-size: 0.7rem;
  }

  .btn-secondary {
    margin-bottom: 20px;
  }

  .dropdown .open {
    overlay: visible !important;
  }

  .hero {
    padding-top: 30px;
  }

  .legal {
    padding-left: 15px;
    font-size: 0.78rem;
  }

  .center.lead.reveal {
    margin-left: -5px !important;
    font-size: 0.9rem;
  }

  .card.reveal.in {
    font-size: 0.8rem !important;
  }

  .danger {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.2rem, 1200px);
  }

  .title-xl {
    font-size: 2.5rem;
  }

  .title-lg {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }

  .btns > * {
    width: 100%;
  }

  .modal {
    padding: 10px;
  }

  .image-stage {
    height: 72vh;
  }

  .brand img {
    height: 36px;
  }

  .page-head {
    padding-top: 22px;
  }

  .download-card .content {
    padding: 26px 22px 24px;
  }

  .icon-badge {
    width: 50px;
    height: 50px;
  }

  .footer-grid {
    padding: 38px 0 20px;
  }

  .faq-a {
    padding-right: 10px;
  }
}