@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

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

:root {
  --bg: #f4f8fb;
  --bg-deep: #0c1a2a;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.82);
  --ink: #0f2236;
  --ink-soft: #314a62;
  --muted: #58718b;
  --brand: #12785a;
  --brand-2: #24a086;
  --brand-3: #f2a94c;
  --line: #d6e2ee;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 8px 20px rgba(9, 34, 59, 0.08);
  --shadow-lg: 0 22px 55px rgba(12, 32, 53, 0.14);
  --easing: cubic-bezier(.22, .61, .36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  line-height: 1.7;
  background:
    radial-gradient(1800px 1000px at -10% -10%, rgba(24, 159, 130, 0.16) 0%, transparent 65%),
    radial-gradient(1400px 900px at 95% 5%, rgba(242, 169, 76, 0.13) 0%, transparent 62%),
    linear-gradient(180deg, #f7fbfe 0%, #eef4fa 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
  z-index: -1;
}

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

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

a:hover {
  color: #0c6048;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.6rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  margin-bottom: 14px;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

p {
  margin-bottom: 16px;
  color: var(--ink-soft);
}

/* ===== Sitewide Progress + Story Rail ===== */
.fw-progress {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 210;
  height: 4px;
  background: rgba(13, 35, 57, 0.12);
  pointer-events: none;
}

.fw-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand-3));
  box-shadow: 0 0 22px rgba(36, 160, 134, 0.45);
  transition: width 0.12s linear;
}

.fw-story-rail {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  width: 170px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(18, 120, 90, 0.2);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.fw-story-title {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-weight: 700;
}

.fw-story-link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 7px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: left;
  cursor: pointer;
}

.fw-story-link:last-child {
  margin-bottom: 0;
}

.fw-story-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(14, 66, 108, 0.22);
  transition: transform 0.25s var(--easing), background-color 0.25s var(--easing);
}

.fw-story-link.active {
  color: var(--ink);
  font-weight: 700;
}

.fw-story-link.active .fw-story-dot {
  background: linear-gradient(180deg, var(--brand-2), var(--brand-3));
  transform: scale(1.34);
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(29, 58, 84, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  backdrop-filter: blur(16px);
}

.nav-container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
}

.nav-logo::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 10px;
  background: linear-gradient(180deg, var(--brand-2), var(--brand-3));
  box-shadow: 0 0 0 5px rgba(36, 160, 134, 0.14);
}

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

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 8px 10px;
  border-radius: 10px;
  transition: color 0.2s var(--easing), background-color 0.2s var(--easing), transform 0.2s var(--easing);
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(23, 120, 93, 0.08);
}

.nav-links a.active {
  color: var(--ink);
  background: rgba(23, 120, 93, 0.1);
}

.nav-cta,
.fw-nav-rotator {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid transparent;
  font-weight: 800;
}

.nav-cta {
  color: #fff !important;
  background: linear-gradient(90deg, #0f7659, #179670) !important;
  box-shadow: 0 12px 24px rgba(17, 126, 96, 0.28);
}

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

.fw-nav-rotator {
  color: var(--ink) !important;
  border-color: rgba(36, 160, 134, 0.32);
  background: rgba(255, 255, 255, 0.85);
}

.fw-nav-rotator:hover {
  background: rgba(36, 160, 134, 0.12);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #14324d;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing), background-color 0.2s var(--easing), color 0.2s var(--easing);
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #0f7659, #22a184);
  box-shadow: 0 14px 28px rgba(15, 118, 89, 0.28);
}

.btn-primary:hover {
  color: #fff;
}

.btn-outline {
  color: #134363;
  border-color: rgba(20, 67, 99, 0.23);
  background: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  color: #0c2f45;
  border-color: rgba(20, 67, 99, 0.34);
  background: #fff;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 0.98rem;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.82rem;
}

/* ===== Main Layout ===== */
main {
  position: relative;
}

.hero,
.page-hero,
.product-hero,
.section,
article.section,
.footer {
  position: relative;
}

.hero,
.page-hero,
.product-hero,
.section,
article.section {
  scroll-margin-top: 96px;
}

.hero {
  padding: 104px 0 82px;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(70vw, 760px);
  height: min(70vw, 760px);
  right: -22%;
  top: -36%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 154, 128, 0.22), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -20%;
  bottom: -46%;
  width: min(54vw, 580px);
  height: min(54vw, 580px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 169, 76, 0.17), transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 780px;
  padding: 36px;
  border-radius: 26px;
  border: 1px solid rgba(36, 74, 108, 0.14);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 120, 90, 0.25);
  color: #0f5e47;
  background: rgba(36, 160, 134, 0.12);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero .highlight {
  background: linear-gradient(90deg, #0f785a, #0f4a80);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 64ch;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.page-hero,
.product-hero {
  padding: 80px 0 56px;
  text-align: center;
}

.page-hero .container,
.product-hero .container {
  max-width: 940px;
}

.page-hero p,
.product-hero-tagline {
  margin: 0 auto;
  max-width: 72ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.product-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 50% 8%, color-mix(in srgb, var(--accent, #12785a) 30%, #ffffff) 0%, transparent 62%);
}

.product-hero-icon {
  font-size: clamp(2.7rem, 8vw, 4rem);
  margin-bottom: 14px;
}

/* ===== Sections ===== */
.section {
  padding: 72px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(211, 227, 241, 0.26), rgba(211, 227, 241, 0.08));
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-header p {
  font-size: 1.02rem;
  color: var(--muted);
}

/* ===== Story Scroll Effect ===== */
.fw-step {
  opacity: 0;
  transform: translate3d(0, 44px, 0) scale(0.985);
  transition: opacity 0.72s var(--easing), transform 0.82s var(--easing), filter 0.5s var(--easing);
  filter: saturate(0.92);
}

.fw-step.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: saturate(1);
}

body[data-fw-home="true"] .hero,
body[data-fw-home="true"] main > .section {
  min-height: clamp(520px, 72vh, 720px);
  display: flex;
  align-items: center;
}

body[data-fw-home="true"] .hero .container,
body[data-fw-home="true"] main > .section > .container {
  width: 100%;
}

/* ===== Stats ===== */
.stats-bar {
  background: linear-gradient(115deg, #0f2234, #153a57, #0f2234);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

.stat-num {
  display: block;
  color: #fff;
  font-size: clamp(1.26rem, 2.8vw, 1.9rem);
  font-weight: 800;
}

.stat-label {
  color: rgba(240, 248, 255, 0.8);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  font-weight: 600;
}

/* ===== Cards ===== */
.products-grid,
.blog-grid,
.why-grid {
  display: grid;
  gap: 22px;
}

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

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

.product-card,
.blog-card,
.why-card,
.benefits-section,
.proof-section,
.cta-box,
.post-content,
.about-story {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(185deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.84));
  box-shadow: var(--shadow-sm);
}

.product-card,
.blog-card {
  color: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 26px;
  transition: transform 0.24s var(--easing), box-shadow 0.24s var(--easing), border-color 0.24s var(--easing);
}

.product-card::before,
.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent, var(--brand)), color-mix(in srgb, var(--accent, var(--brand)) 25%, #ffffff));
}

.product-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent, var(--brand)) 32%, #cde0ef);
  box-shadow: var(--shadow-lg);
}

.product-icon,
.product-icon-lg {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 12px;
  display: inline-flex;
}

.product-card h3,
.blog-card h3 {
  margin-bottom: 8px;
}

.product-tagline,
.product-desc,
.blog-card p,
.why-card p,
.detail-section p,
.post-content p,
.about-story p {
  color: var(--ink-soft);
}

.product-tagline {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.94rem;
  margin-bottom: 12px;
}

.product-highlights {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 18px;
  flex: 1;
}

.product-highlights li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.product-highlights li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent, var(--brand));
  font-weight: 700;
}

.product-link,
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--accent, var(--brand));
}

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

.why-card {
  text-align: center;
  padding: 34px 24px;
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

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

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

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.blog-date {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--muted);
  font-weight: 700;
}

.blog-tag {
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent, var(--brand)) 32%, #ffffff);
  background: color-mix(in srgb, var(--accent, var(--brand)) 10%, #ffffff);
  color: var(--accent, var(--brand));
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

/* ===== CTA ===== */
.cta-section {
  padding: 68px 0;
}

.cta-box {
  text-align: center;
  padding: clamp(28px, 6vw, 56px);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.35), transparent 40%),
    linear-gradient(120deg, #0f5f95, #0e7f61 52%, #0f5f95);
  border: 0;
}

.cta-box h2,
.cta-box h3,
.cta-box p {
  color: #f4fbff;
}

.cta-box p {
  max-width: 66ch;
  margin-inline: auto;
}

.cta-box .btn-primary {
  margin-top: 6px;
  background: #fff;
  color: #0f4f7d;
  box-shadow: 0 14px 30px rgba(9, 29, 46, 0.22);
}

/* ===== Product Detail ===== */
.product-detail,
.about-content,
.post-container {
  max-width: 860px;
  margin: 0 auto;
}

.detail-section {
  margin-bottom: 30px;
}

.detail-lead {
  font-size: 1.06rem;
}

.benefits-section {
  margin: 26px 0;
  padding: 26px;
}

.benefits-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.benefit-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
}

.benefit-check {
  color: var(--accent, var(--brand));
  font-weight: 800;
  line-height: 1.2;
  margin-top: 2px;
}

.proof-section {
  margin-top: 6px;
  padding: 24px;
  border-left: 5px solid var(--brand);
}

/* ===== Blog Post ===== */
.post-header {
  margin-bottom: 16px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
}

.back-link:hover {
  color: var(--ink);
}

.post-content {
  padding: clamp(24px, 5vw, 40px);
}

.post-content h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 3rem);
}

.post-content h2 {
  margin-top: 34px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dce7f1;
}

.post-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.post-content p,
.post-content li {
  font-size: 1.02rem;
}

.post-content ul,
.post-content ol {
  margin: 8px 0 16px 22px;
}

.post-content li {
  margin-bottom: 8px;
}

.post-content a {
  color: #0f5f95;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-content hr {
  border: 0;
  border-top: 1px solid #dce7f1;
  margin: 26px 0;
}

.post-footer {
  margin-top: 26px;
}

.fw-reading-meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.fw-toc {
  border: 1px dashed #c6d8e8;
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.75);
  margin: 14px 0 8px;
}

.fw-toc-title {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 800;
}

.fw-toc a {
  display: block;
  font-size: 0.9rem;
  color: #0e4f76;
  margin-bottom: 6px;
}

.fw-toc a:last-child {
  margin-bottom: 0;
}

/* ===== About ===== */
.about-story {
  padding: clamp(22px, 4vw, 36px);
}

.about-story h2 {
  margin-top: 30px;
}

.about-story h2:first-child {
  margin-top: 0;
}

.about-list {
  margin: 12px 0 18px 20px;
}

.about-list li {
  margin-bottom: 8px;
}

.about-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Footer ===== */
.footer {
  background:
    radial-gradient(circle at 12% 15%, rgba(56, 149, 232, 0.16), transparent 40%),
    radial-gradient(circle at 92% 80%, rgba(43, 157, 125, 0.2), transparent 42%),
    linear-gradient(180deg, #0f2133 0%, #0b1724 100%);
  color: rgba(226, 239, 250, 0.8);
  padding: 68px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 28px;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: #f8fcff;
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-col p {
  color: rgba(226, 239, 250, 0.74);
  font-size: 0.9rem;
}

.footer-col a {
  display: block;
  color: rgba(226, 239, 250, 0.74);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(221, 235, 248, 0.6);
  max-width: 900px;
  margin: 0 auto 8px;
  font-size: 0.8rem;
}

/* ===== Floating CTA ===== */
.fw-floating-cta {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 88;
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(17, 118, 95, 0.24);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.fw-floating-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0f3754;
  background: rgba(15, 95, 149, 0.08);
}

.fw-floating-cta .fw-open-search {
  border: 1px solid rgba(15, 95, 149, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: #0f3754;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 10px;
  padding: 9px 12px;
  cursor: pointer;
}

.fw-floating-cta a.primary {
  color: #fff;
  background: linear-gradient(90deg, #0f7659, #22a184);
}

.fw-floating-cta a:hover {
  transform: translateY(-1px);
}

.fw-floating-cta .fw-open-search:hover {
  transform: translateY(-1px);
  background: #fff;
}

.fw-page-pulse {
  position: fixed;
  top: 94px;
  right: 14px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(18, 120, 90, 0.22);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  padding: 7px 12px;
  color: #18435f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.fw-page-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-2), var(--brand-3));
  box-shadow: 0 0 0 4px rgba(36, 160, 134, 0.15);
}

.fw-page-time {
  color: #4d6a82;
}

.fw-command-backdrop {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 16px 24px;
  background: rgba(8, 22, 36, 0.45);
  backdrop-filter: blur(8px);
}

.fw-command-backdrop.open {
  display: flex;
}

.fw-command {
  width: min(760px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(195, 216, 235, 0.55);
  background: linear-gradient(180deg, rgba(251, 254, 255, 0.98), rgba(244, 250, 255, 0.96));
  box-shadow: 0 24px 58px rgba(7, 24, 39, 0.28);
  overflow: hidden;
}

.fw-command-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid #d9e6f2;
}

.fw-command-head strong {
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.fw-command-hint {
  border-radius: 8px;
  border: 1px solid #c9dae9;
  padding: 3px 8px;
  color: #46647d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.fw-command-input {
  width: calc(100% - 20px);
  margin: 10px;
  border: 1px solid #c8dbee;
  border-radius: 12px;
  background: #fff;
  color: #103450;
  padding: 11px 12px;
  font-size: 0.96rem;
  outline: none;
}

.fw-command-input:focus {
  border-color: rgba(17, 118, 95, 0.55);
  box-shadow: 0 0 0 3px rgba(17, 118, 95, 0.15);
}

.fw-command-list {
  max-height: 54vh;
  overflow: auto;
  padding: 0 10px 10px;
}

.fw-command-item {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  padding: 9px 10px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  cursor: pointer;
}

.fw-command-title {
  font-size: 0.9rem;
  color: #153d5b;
  font-weight: 800;
}

.fw-command-meta {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  border-radius: 999px;
  background: rgba(15, 95, 149, 0.11);
  color: #155681;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 2px 8px;
}

.fw-command-path {
  grid-column: 1 / span 2;
  font-size: 0.76rem;
  color: #5f7891;
  overflow-wrap: anywhere;
}

.fw-command-item:hover,
.fw-command-item.active {
  border-color: rgba(17, 118, 95, 0.28);
  background: rgba(17, 118, 95, 0.08);
}

.fw-command-empty {
  color: #5d7690;
  font-size: 0.84rem;
  padding: 12px;
}

/* ===== Empty State ===== */
.empty-state {
  text-align: center;
  padding: 90px 0;
  color: var(--muted);
}

/* ===== 2026 Sitewide Upgrade Layer ===== */
.fw-utility-bar {
  position: sticky;
  top: 0;
  z-index: 260;
  background:
    linear-gradient(92deg, rgba(9, 66, 99, 0.98), rgba(18, 120, 90, 0.96), rgba(9, 66, 99, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.fw-utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e9f7ff;
  font-size: 0.78rem;
  font-weight: 700;
}

.fw-utility-label {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 3px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.64rem;
}

.fw-utility-copy {
  color: rgba(240, 250, 255, 0.92);
}

.fw-utility-link {
  color: #ffffff;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  font-size: 0.74rem;
  font-weight: 800;
}

.fw-utility-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.fw-utility-close {
  margin-left: auto;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
}

body.has-fw-utility .navbar {
  top: 38px;
}

body.has-fw-utility .fw-progress {
  top: 38px;
}

.fw-breadcrumb-wrap {
  border-bottom: 1px solid rgba(20, 67, 99, 0.14);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
}

.fw-breadcrumb {
  min-height: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.fw-breadcrumb a {
  color: #195d84;
}

.fw-breadcrumb .sep {
  color: #9bb1c4;
  margin: 0 6px;
}

.fw-breadcrumb .current {
  color: var(--ink);
}

.fw-step {
  transition:
    opacity 0.72s var(--easing),
    transform 0.82s var(--easing),
    filter 0.5s var(--easing);
  transition-delay: var(--fw-delay, 0ms);
}

.fw-active-section {
  position: relative;
}

.fw-active-section::after {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border-radius: 22px;
  border: 1px solid rgba(18, 120, 90, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.fw-quicklinks {
  position: fixed;
  right: 12px;
  top: 52%;
  transform: translateY(-50%);
  z-index: 88;
  width: 198px;
  border-radius: 16px;
  border: 1px solid rgba(19, 75, 109, 0.2);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  padding: 12px;
}

.fw-quicklinks-title {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 8px;
}

.fw-quicklink {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 8px 9px;
  color: #3b5d78;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.fw-quicklink:hover {
  background: rgba(21, 95, 145, 0.08);
  color: #113f5e;
}

.fw-quicklink.active {
  background: rgba(18, 120, 90, 0.1);
  color: #0f5f48;
}

.fw-backtop {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 100;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(16, 89, 137, 0.25);
  background: rgba(255, 255, 255, 0.9);
  color: #104f76;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.24s var(--easing), transform 0.24s var(--easing), background-color 0.24s var(--easing);
}

.fw-backtop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fw-backtop:hover {
  background: #fff;
}

.product-card,
.blog-card,
.why-card,
.cta-box {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(880px) translateY(var(--fw-lift, 0px)) rotateX(var(--fw-rx, 0deg)) rotateY(var(--fw-ry, 0deg));
}

.product-card:hover,
.blog-card:hover,
.why-card:hover,
.cta-box:hover {
  --fw-lift: -6px;
}

.fw-depth::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--fw-mx, 50%) var(--fw-my, 50%), rgba(255, 255, 255, 0.35), transparent 45%);
  opacity: 0.55;
}

body.fw-scrolled .navbar {
  box-shadow: 0 10px 26px rgba(13, 41, 64, 0.12);
}

body[data-fw-page="blog-post"] .post-content {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(252, 255, 255, 0.93)),
    radial-gradient(circle at 90% 0%, rgba(15, 95, 149, 0.08), transparent 50%);
}

body[data-fw-page="products"] .page-hero,
body[data-fw-page="product"] .product-hero {
  background:
    radial-gradient(circle at 15% -20%, rgba(36, 160, 134, 0.16), transparent 58%),
    radial-gradient(circle at 85% 4%, rgba(56, 149, 232, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.8));
}

body[data-fw-page="about"] .about-story {
  background:
    radial-gradient(circle at 8% 0%, rgba(36, 160, 134, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 254, 255, 0.88));
}

/* ===== Responsive ===== */
@media (max-width: 1160px) {
  .fw-story-rail {
    display: none;
  }

  .fw-quicklinks {
    display: none;
  }

  .fw-page-pulse {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .fw-utility-inner {
    gap: 8px;
    flex-wrap: wrap;
    min-height: 42px;
    padding: 6px 0;
  }

  .fw-utility-copy {
    width: 100%;
    order: 3;
    font-size: 0.72rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(18, 61, 90, 0.14);
    padding: 16px;
    box-shadow: 0 18px 28px rgba(8, 28, 45, 0.12);
    gap: 10px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-cta,
  .fw-nav-rotator {
    width: 100%;
    text-align: center;
  }

  body[data-fw-home="true"] .hero,
  body[data-fw-home="true"] main > .section {
    min-height: unset;
  }

  .hero {
    padding: 74px 0 52px;
  }

  .hero-content {
    padding: 24px;
    border-radius: 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .about-cta {
    flex-direction: column;
  }

  .about-cta .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fw-floating-cta {
    right: 10px;
    left: 10px;
    justify-content: space-between;
  }

  .fw-floating-cta a {
    flex: 1;
    min-width: 0;
  }

  .fw-floating-cta .fw-open-search {
    flex: 1;
    min-width: 0;
  }

  .fw-backtop {
    right: 10px;
    bottom: 84px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 16px;
  }

  .products-grid,
  .products-grid-lg,
  .blog-grid,
  .blog-grid-full {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .post-content,
  .about-story,
  .benefits-section,
  .proof-section,
  .product-card,
  .blog-card {
    padding: 18px;
  }

  .fw-floating-cta {
    bottom: 10px;
    padding: 6px;
  }

  .fw-floating-cta a {
    font-size: 0.72rem;
    padding: 8px;
  }

  .fw-breadcrumb {
    min-height: 36px;
    font-size: 0.72rem;
  }

  body.has-fw-utility .navbar {
    top: 42px;
  }

  body.has-fw-utility .fw-progress {
    top: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .fw-step,
  .fw-step.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
