@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --navy: #07131f;
  --navy-2: #0c1c2e;
  --ink: #122033;
  --muted: #5b6b80;
  --line: #d7e0ea;
  --paper: #f5f7fa;
  --card: #ffffff;
  --cyan: #2dd4bf;
  --cyan-2: #14b8a6;
  --sky: #38bdf8;
  --gold: #f5c16c;
  --ok: #22c55e;
  --radius: 1.15rem;
  --shadow: 0 18px 50px rgba(7, 19, 31, .12);
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --display: "Outfit", "Source Sans 3", sans-serif;
}
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font) !important;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
h1, h2, h3, .brand, .display { font-family: var(--display); letter-spacing: -.03em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1160px, calc(100% - 2rem)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 120;
  background: #fff; color: var(--navy); padding: .75rem 1rem; font-weight: 700; border-radius: .6rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 19, 31, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 4.4rem; gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: .7rem; color: #fff; font-weight: 800; font-size: 1.2rem;
}
.brand-mark {
  width: 2.15rem; height: 2.15rem; border-radius: .7rem;
  background: linear-gradient(145deg, #2dd4bf, #0ea5e9);
  display: grid; place-items: center; box-shadow: 0 0 0 3px rgba(45,212,191,.18);
}
.brand small { display: block; font-size: .68rem; font-weight: 600; color: #94a3b8; letter-spacing: .04em; }
.site-header nav { display: none; align-items: center; gap: 1.35rem; }
.site-header nav a { color: #cbd5e1; font-weight: 600; font-size: .95rem; }
.site-header nav a:hover, .site-header nav a.is-active { color: #fff; }
.nav-dropdown { position: relative; }
.nav-mega {
  display: none; position: absolute; top: calc(100% + .7rem); left: 0; width: 540px;
  background: #fff; color: var(--ink); border-radius: 1rem; padding: .85rem;
  box-shadow: var(--shadow); grid-template-columns: 1fr 1fr; gap: .2rem .6rem; z-index: 60;
}
.nav-dropdown:hover .nav-mega, .nav-dropdown:focus-within .nav-mega { display: grid; }
.nav-mega a { color: var(--ink) !important; padding: .55rem .7rem; border-radius: .65rem; font-weight: 600; }
.nav-mega a:hover { background: #ecfeff; color: #0f766e !important; }
.nav-search {
  display: none; align-items: center; gap: .5rem; min-width: 220px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: .45rem .9rem; color: #e2e8f0;
}
.nav-search input { background: transparent; border: 0; outline: 0; width: 100%; color: #fff; font: inherit; }
.nav-search input::placeholder { color: #94a3b8; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: .8rem; padding: .85rem 1.25rem; font-weight: 700; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(180deg, #2dd4bf, #14b8a6); color: #04201b; box-shadow: 0 10px 24px rgba(20,184,166,.28); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-line { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.menu-btn { background: none; border: 0; color: #fff; font-size: 1.4rem; cursor: pointer; }
#mobile-menu {
  display: none; background: #0c1c2e; border-top: 1px solid rgba(255,255,255,.08); padding: .5rem 0 1rem;
}
#mobile-menu.open { display: block; }
#mobile-menu a, #mobile-menu .m-search { display: block; color: #e2e8f0; text-align: left; padding: .85rem 1.25rem; font-weight: 600; }
#mobile-menu .m-search input {
  width: 100%; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06);
  color: #fff; border-radius: 999px; padding: .7rem 1rem;
}
.desk-cta { display: none; }
@media (min-width: 1080px) {
  .site-header nav, .nav-search, .desk-cta { display: flex; }
  .menu-btn { display: none; }
}

.search-overlay {
  display: none; position: fixed; inset: 0; z-index: 90; background: rgba(7,19,31,.62); padding: 12vh 1rem;
}
.search-overlay.open { display: block; }
.search-panel {
  max-width: 680px; margin: 0 auto; background: #fff; border-radius: 1.2rem; padding: 1.1rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.search-panel input { width: 100%; border: 0; outline: 0; font-size: 1.15rem; font-family: var(--display); }
.search-hit { display: block; padding: .85rem; border-radius: .8rem; }
.search-hit:hover { background: #f0fdfa; }

.hero {
  position: relative; overflow: hidden; color: #eef6ff;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(45,212,191,.28), transparent 55%),
    radial-gradient(700px 380px at 10% 110%, rgba(14,165,233,.22), transparent 50%),
    linear-gradient(160deg, #061018 0%, #0b2238 55%, #08202b 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px; mask-image: radial-gradient(circle at 70% 30%, #000 20%, transparent 75%);
}
.hero-grid {
  position: relative; display: grid; gap: 2.5rem; padding: 3.2rem 0 4rem;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; align-items: center; padding: 4.2rem 0 5rem; }
}
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(45,212,191,.12); border: 1px solid rgba(45,212,191,.28);
  color: var(--cyan); font-weight: 700; font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; padding: .35rem .75rem; border-radius: 999px;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.7rem); line-height: 1.08; margin: .9rem 0 .8rem; color: #fff; }
.hero .lede { font-size: 1.18rem; color: #c5d4e4; max-width: 38rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.4rem; }
.hero-search { margin-top: 1.4rem; max-width: 34rem; position: relative; }
.hero-search input {
  width: 100%; border: 0; border-radius: 999px; padding: 1rem 1.2rem 1rem 2.8rem;
  font: inherit; color: var(--ink); box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.hero-search i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: #0f766e; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.chip {
  display: inline-flex; align-items: center; gap: .35rem; padding: .38rem .8rem;
  border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: #dbeafe; font-weight: 650; font-size: .86rem;
}

.flow-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.3rem; padding: 1.2rem; backdrop-filter: blur(8px);
}
.flow-card h3 { margin: 0 0 1rem; color: #fff; font-size: 1rem; }
.flow { display: grid; gap: .65rem; }
.flow-step {
  display: grid; grid-template-columns: 2rem 1fr; gap: .7rem; align-items: start;
  background: rgba(7,19,31,.35); border-radius: .85rem; padding: .75rem .85rem;
}
.flow-step b { display: block; color: #fff; font-size: .95rem; }
.flow-step span { color: #9fb2c7; font-size: .85rem; }
.n {
  width: 1.7rem; height: 1.7rem; border-radius: 999px; display: grid; place-items: center;
  background: rgba(45,212,191,.18); color: var(--cyan); font-weight: 800; font-size: .75rem;
}

.section { padding: 4rem 0; }
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); margin: 0 0 .5rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.cards-3, .cards-4 { display: grid; gap: 1rem; }
@media (min-width: 800px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } .cards-4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem; box-shadow: 0 1px 0 rgba(255,255,255,.8);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #99f6e4; }
.icon-blob {
  width: 2.6rem; height: 2.6rem; border-radius: .85rem; display: grid; place-items: center;
  background: #ecfeff; color: #0f766e; margin-bottom: .85rem; font-size: 1.05rem;
}
.card h3 { margin: 0 0 .4rem; font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }
.card .more { display: inline-block; margin-top: .9rem; color: #0f766e; font-weight: 700; }

.band { background: var(--navy); color: #dbe7f3; }
.band h2, .band h3 { color: #fff; }
.split { display: grid; gap: 2rem; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; align-items: start; } }
.list-check { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.list-check li { padding-left: 1.6rem; position: relative; }
.list-check li::before { content: ""; position: absolute; left: 0; top: .45rem; width: .7rem; height: .7rem; border-radius: 99px; background: var(--cyan); }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; text-align: center; }
.stat b { display: block; font-family: var(--display); font-size: 1.9rem; color: #0f766e; }
.stat span { color: var(--muted); font-size: .92rem; }

.cta-panel {
  background: linear-gradient(135deg, #0c1c2e, #134e4a);
  color: #e2e8f0; border-radius: 1.5rem; padding: 2rem; text-align: center;
}
.cta-panel h2 { color: #fff; margin-top: 0; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: .9rem; padding: .9rem 1rem; margin-bottom: .6rem;
}
.faq summary { cursor: pointer; font-weight: 700; font-family: var(--display); }
.faq p { color: var(--muted); margin: .6rem 0 0; }

.page-hero { padding: 2.4rem 0 1.2rem; }
.breadcrumb { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: #0f766e; font-weight: 650; }
.filter-bar input {
  min-width: min(100%, 280px); border: 1px solid var(--line); border-radius: 999px;
  padding: .75rem 1rem; background: #fff; font: inherit;
}
.product-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #99f6e4; }
.product-card h2 { margin: .2rem 0 .45rem; font-size: 1.2rem; font-family: var(--display); }
.product-card p { margin: 0; color: var(--muted); }
.product-card.featured { border-color: #5eead4; background: linear-gradient(180deg, #f0fdfa, #fff); }
.tag { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #0f766e; background: #ecfeff; padding: .2rem .5rem; border-radius: 999px; margin-bottom: .55rem; }

.site-footer { background: #061018; color: #94a3b8; }
.site-footer .fg { display: grid; gap: 1.5rem; padding: 2.4rem 0 1.5rem; }
@media (min-width: 800px) { .site-footer .fg { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer h4 { color: #fff; margin: 0 0 .7rem; font-size: .95rem; }
.site-footer a { display: block; color: #94a3b8; margin: .28rem 0; }
.site-footer a:hover { color: #fff; }
.site-footer .copy { border-top: 1px solid rgba(255,255,255,.08); padding: 1rem 0 1.4rem; font-size: .82rem; }

.wa-float {
  position: fixed; right: 1.15rem; bottom: 1.15rem; z-index: 40;
  width: 3.5rem; height: 3.5rem; border-radius: 999px;
  background: #22c55e; color: #fff; display: grid; place-items: center;
  font-size: 1.75rem; box-shadow: 0 10px 24px rgba(34,197,94,.4);
}
.wa-float:hover { color: #fff; transform: scale(1.06); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 1.2rem; padding: 1.4rem; box-shadow: var(--shadow); }
.form-card label { display: block; font-weight: 650; margin-bottom: .3rem; }
.form-card input, .form-card textarea {
  width: 100%; border: 1px solid var(--line); border-radius: .75rem; padding: .75rem .9rem; font: inherit; margin-bottom: .9rem;
}
.form-card input:focus, .form-card textarea:focus { outline: 2px solid #99f6e4; border-color: #14b8a6; }
.catalog-list a { display: block; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.catalog-list a:hover { color: #0f766e; }

/* Upgrade leftover product pages */
#product-detail-content img[src*="iconify"] { display: none !important; }
#product-detail-content { background: transparent !important; }
#product-detail-content h1 { font-family: var(--display); letter-spacing: -.03em; }
#product-detail-content .max-w-lg, #product-detail-content ul { text-align: left; }
.hero-gradient {
  background:
    radial-gradient(700px 280px at 90% 0%, rgba(45,212,191,.25), transparent 55%),
    linear-gradient(160deg, #061018, #0c1c2e) !important;
  animation: none !important;
}
