/* =========================================================
   fixonal.css — studio layer on top of Material Kit
   All new components are `fx-` prefixed so they don't collide
   with the template. Loaded AFTER material-kit.css.
   ========================================================= */

:root {
  --fx-ink: #0f172a;
  --fx-ink-2: #1e293b;
  --fx-text: #3f4b5e;
  --fx-muted: #6b7891;
  --fx-line: #e4e8ef;
  --fx-line-soft: #eef1f6;
  --fx-bg: #ffffff;
  --fx-bg-alt: #f7f9fc;
  --fx-accent: #2f6fed;
  --fx-accent-dark: #1d4fc4;
  --fx-radius: 14px;
  --fx-radius-lg: 20px;
  --fx-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .06);
  --fx-shadow-lg: 0 2px 4px rgba(15, 23, 42, .04), 0 18px 48px rgba(15, 23, 42, .10);
}

/* ---------- base ---------- */

body.fx {
  background: var(--fx-bg);
  color: var(--fx-text);
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.fx h1, body.fx h2, body.fx h3, body.fx h4, body.fx h5, body.fx h6 {
  color: var(--fx-ink);
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-top: 0;
}

body.fx p { color: var(--fx-text); }

.fx-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.fx-section { padding: 88px 0; }
.fx-section--tight { padding: 64px 0; }
.fx-section--alt { background: var(--fx-bg-alt); border-top: 1px solid var(--fx-line-soft); border-bottom: 1px solid var(--fx-line-soft); }

/* ---------- section headers ---------- */

.fx-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fx-accent);
  margin-bottom: 14px;
}

body.fx .fx-h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 16px;
}

body.fx .fx-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fx-muted);
  margin: 0;
}

.fx-head { max-width: 680px; margin: 0 0 52px; }
.fx-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- navbar ---------- */

.fx-nav.navbar {
  background: rgba(15, 23, 42, .92) !important;
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 10px 0;
}

.fx-nav .navbar-brand { padding: 6px 0; }
.fx-nav .fx-nav-logo { height: 30px; width: auto; display: block; }

/* MK forces uppercase on nav links at higher specificity, so lean into it
   and match the letter-spacing used by .fx-eyebrow */
.fx-nav .nav-link {
  color: rgba(255, 255, 255, .78) !important;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 8px 16px !important;
  transition: color .18s ease;
}

.fx-nav .nav-link:not(.fx-nav-cta):hover,
.fx-nav .nav-item.active .nav-link:not(.fx-nav-cta) { color: #fff !important; }

/* Material Kit paints a grey plate behind hovered/active nav links */
.fx-nav .nav-link:not(.fx-nav-cta),
.fx-nav .nav-link:not(.fx-nav-cta):hover,
.fx-nav .nav-item.active .nav-link:not(.fx-nav-cta) {
  background: transparent !important;
  box-shadow: none !important;
}

.fx-nav .fx-nav-cta {
  background: #fff !important;
  color: var(--fx-ink) !important;
  border-radius: 999px !important;
  padding: 9px 20px !important;
  font-weight: 600;
  margin-left: 10px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.fx-nav .fx-nav-cta:hover {
  color: var(--fx-ink) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.fx-nav .navbar-toggler-icon { background-color: rgba(255, 255, 255, .85); }

/* ---------- hero ---------- */

.fx-hero {
  position: relative;
  background: linear-gradient(165deg, #0b1220 0%, #16243d 55%, #1b2f52 100%);
  color: #fff;
  padding: 168px 0 104px;
  overflow: hidden;
}

.fx-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 340px at 78% 12%, rgba(47, 111, 237, .26), transparent 70%),
    radial-gradient(520px 300px at 8% 88%, rgba(56, 189, 248, .14), transparent 70%);
  pointer-events: none;
}

.fx-hero > * { position: relative; z-index: 1; }

.fx-hero-inner { max-width: 760px; }

.fx-hero-logo {
  height: 62px;
  width: auto;
  margin-bottom: 34px;
}

/* `body.fx h1` below would otherwise out-specify a bare `.fx-hero h1` */
body.fx .fx-hero h1 {
  color: #fff;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 22px;
}

body.fx .fx-hero p {
  color: rgba(233, 240, 252, .78);
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 620px;
}

.fx-hero--sub { padding: 148px 0 84px; }
body.fx .fx-hero--sub h1 { font-size: 44px; }

/* ---------- buttons ---------- */

.fx-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
.fx-btn:hover, .fx-btn:focus { text-decoration: none; transform: translateY(-1px); }
.fx-btn i { font-size: 18px; }

.fx-btn--primary {
  background: var(--fx-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(47, 111, 237, .3);
}
.fx-btn--primary:hover, .fx-btn--primary:focus {
  background: var(--fx-accent-dark);
  color: #fff;
  box-shadow: 0 10px 26px rgba(47, 111, 237, .38);
}

.fx-btn--ghost {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}
.fx-btn--ghost:hover, .fx-btn--ghost:focus {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.fx-btn--outline {
  background: transparent;
  border-color: var(--fx-line);
  color: var(--fx-ink);
}
.fx-btn--outline:hover, .fx-btn--outline:focus {
  border-color: var(--fx-ink);
  color: var(--fx-ink);
  background: #fff;
}

.fx-btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- capability / value cards ---------- */

.fx-grid { display: grid; gap: 24px; }
.fx-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fx-grid--2 { grid-template-columns: repeat(2, 1fr); }

.fx-card {
  background: #fff;
  border: 1px solid var(--fx-line);
  border-radius: var(--fx-radius);
  padding: 30px 28px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.fx-card:hover {
  border-color: #d3dbe8;
  box-shadow: var(--fx-shadow);
  transform: translateY(-2px);
}

.fx-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 111, 237, .09);
  color: var(--fx-accent);
  margin-bottom: 18px;
}
.fx-card-icon i { font-size: 22px; }

body.fx .fx-card h3 {
  font-size: 19px;
  margin: 0 0 10px;
}

body.fx .fx-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fx-muted);
  margin: 0;
}

/* ---------- product tiles (homepage) ---------- */

.fx-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--fx-line);
  border-radius: var(--fx-radius);
  padding: 26px 24px;
  height: 100%;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.fx-tile:hover {
  text-decoration: none;
  border-color: #d3dbe8;
  box-shadow: var(--fx-shadow);
  transform: translateY(-3px);
}

.fx-tile-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  border: 1px solid var(--fx-line);
  background: #fff;
  object-fit: cover;
  overflow: hidden;
  margin-bottom: 18px;
}

body.fx .fx-tile h3 {
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--fx-ink);
}

body.fx .fx-tile .fx-tile-tag {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fx-muted);
  margin: 0 0 16px;
  flex: 1 1 auto;
}

/* ---------- status pill ---------- */

.fx-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.fx-pill--live { background: rgba(16, 155, 105, .1); color: #0d7f57; }
.fx-pill--soon { background: rgba(180, 132, 12, .12); color: #94690a; }
.fx-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- product detail rows (products page) ---------- */

.fx-product {
  padding: 76px 0;
  border-top: 1px solid var(--fx-line-soft);
}
.fx-product:first-of-type { border-top: 0; }

.fx-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fx-product--flip .fx-product-media { order: 2; }

.fx-product-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.fx-product-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  border: 1px solid var(--fx-line);
  background: #fff;
  object-fit: cover;
  overflow: hidden;
  flex: 0 0 auto;
}

body.fx .fx-product-head h2 {
  font-size: 30px;
  margin: 0 0 4px;
}

body.fx .fx-product-tagline {
  font-size: 15px;
  color: var(--fx-accent);
  font-weight: 500;
  margin: 0;
}

body.fx .fx-product-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fx-text);
}

.fx-feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}
.fx-feature-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fx-text);
}
.fx-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--fx-accent);
  border-bottom: 2px solid var(--fx-accent);
  transform: rotate(-45deg);
}

.fx-meta {
  font-size: 13px;
  color: var(--fx-muted);
  margin: 18px 0 0;
}

/* ---------- media ---------- */

.fx-shots {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}
.fx-shots img {
  width: 100%;
  max-width: 210px;
  height: auto;
  border-radius: 16px;
  display: block;
}
.fx-shots img.fx-shot--framed {
  border: 1px solid var(--fx-line);
  box-shadow: var(--fx-shadow);
}
.fx-shots--offset img:nth-child(2) { transform: translateY(22px); }

.fx-media-single {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--fx-line);
  box-shadow: var(--fx-shadow);
  display: block;
}

.fx-media-plain {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.fx-media-stack { display: grid; gap: 18px; justify-items: center; }

/* portrait phone captures need reining in, or they dominate the row */
.fx-media-phone {
  width: 100%;
  max-width: 232px;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--fx-line);
  box-shadow: var(--fx-shadow);
  display: block;
}

/* Keppt has no public screenshots yet — a branded plate instead */
.fx-plate {
  border-radius: var(--fx-radius-lg);
  background: linear-gradient(160deg, #241f2c 0%, #322a3d 100%);
  padding: 56px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .07);
}
.fx-plate img {
  width: 104px;
  height: 104px;
  border-radius: 24px;
  margin-bottom: 22px;
}
body.fx .fx-plate p {
  color: rgba(238, 234, 226, .72);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* ---------- store badges ---------- */

.fx-stores { display: flex; flex-wrap: wrap; gap: 12px; }

.fx-store {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 9px 17px;
  border: 1px solid var(--fx-ink);
  border-radius: 12px;
  background: #fff;
  color: var(--fx-ink);
  text-decoration: none;
  transition: background-color .16s ease, color .16s ease, transform .16s ease;
}
.fx-store:hover {
  background: var(--fx-ink);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.fx-store svg { width: 22px; height: 22px; flex: 0 0 auto; }
.fx-store-txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.fx-store-txt small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .09em;
  opacity: .68;
}
.fx-store-txt strong { font-size: 14px; font-weight: 600; letter-spacing: -.01em; }

/* ---------- contact ---------- */

.fx-contact { background: var(--fx-bg-alt); border-top: 1px solid var(--fx-line-soft); }

.fx-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.fx-contact-card {
  background: #fff;
  border: 1px solid var(--fx-line);
  border-radius: var(--fx-radius-lg);
  padding: 36px 34px;
  box-shadow: var(--fx-shadow);
}

.fx-detail { display: flex; gap: 14px; margin-bottom: 26px; }
.fx-detail-icon {
  width: 40px; height: 40px; flex: 0 0 auto;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(47, 111, 237, .09);
  color: var(--fx-accent);
}
body.fx .fx-detail h4 { font-size: 15px; margin: 0 0 4px; }
body.fx .fx-detail p { font-size: 14px; line-height: 1.6; color: var(--fx-muted); margin: 0; }

/* form fields inside our card — calm down Material Kit's underline styling */
.fx-contact-card .form-group { margin-bottom: 4px; }
.fx-contact-card .bmd-form-group { padding-top: 20px; }
.fx-contact-card label.bmd-label-floating { color: var(--fx-muted); }
.fx-contact-card .form-control { color: var(--fx-ink); }

#fixonal-turnstile { display: flex; justify-content: center; }

.fx-status { font-size: 14px; margin: 14px 0 0; min-height: 20px; }
.fx-status.is-error { color: #c0392b; }
.fx-status.is-success { color: #0d7f57; }

/* ---------- footer ---------- */

/* Material Kit styles the bare `footer` element: display:flex, text-align:center,
   inline-block list items and uppercase padded links. Reset all of it. */
footer.fx-footer {
  display: block;
  text-align: left;
  background: var(--fx-ink);
  color: rgba(255, 255, 255, .62);
  padding: 56px 0 34px;
}
footer.fx-footer ul li { display: block; }
footer.fx-footer ul li a {
  display: inline;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  border-radius: 0;
}
.fx-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.fx-footer-brand img { height: 30px; width: auto; margin-bottom: 14px; }
body.fx .fx-footer-brand p { color: rgba(255, 255, 255, .55); font-size: 14px; max-width: 280px; margin: 0; line-height: 1.6; }

.fx-footer-cols { display: flex; flex-wrap: wrap; gap: 56px; }
body.fx .fx-footer-col h5 {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.fx-footer-col ul { list-style: none; padding: 0; margin: 0; }
.fx-footer-col li { margin-bottom: 9px; }
.fx-footer-col a {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  text-decoration: none;
  transition: color .16s ease;
}
.fx-footer-col a:hover { color: #fff; text-decoration: none; }

.fx-footer-base {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

/* ---------- responsive ---------- */

@media (max-width: 991px) {
  .fx-hero { padding: 140px 0 80px; }
  body.fx .fx-hero h1 { font-size: 40px; }
  body.fx .fx-hero p { font-size: 18px; }
  body.fx .fx-h2 { font-size: 30px; }
  .fx-section { padding: 64px 0; }

  .fx-grid--3 { grid-template-columns: 1fr 1fr; }
  .fx-product-grid { grid-template-columns: 1fr; gap: 40px; }
  .fx-product--flip .fx-product-media { order: 0; }
  .fx-contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .fx-nav.navbar { background: rgba(15, 23, 42, .97) !important; }
  .fx-nav .navbar-collapse { padding-bottom: 12px; }
  .fx-nav .fx-nav-cta { display: inline-flex; margin: 10px 0 0 16px; }
}

@media (max-width: 640px) {
  .fx-hero { padding: 124px 0 68px; }
  body.fx .fx-hero h1 { font-size: 32px; }
  .fx-hero-logo { height: 48px; }
  body.fx .fx-hero--sub h1 { font-size: 32px; }
  body.fx .fx-h2 { font-size: 26px; }
  body.fx .fx-lede { font-size: 16px; }

  .fx-grid--3, .fx-grid--2 { grid-template-columns: 1fr; }
  .fx-feature-list { grid-template-columns: 1fr; }
  .fx-shots--offset img:nth-child(2) { transform: none; }
  .fx-shots { gap: 10px; }
  .fx-product { padding: 56px 0; }
  body.fx .fx-product-head h2 { font-size: 24px; }
  .fx-contact-card { padding: 28px 22px; }
  .fx-btn { width: 100%; justify-content: center; }
  .fx-footer-cols { gap: 32px; }
}
