/* ==========================================================================
   Theme tokens — sampled from the Fusion One Ventures mark
   (navy #12233f · gold #c9a563 · slate #7b8698 · ivory #f6f5f2)
   ========================================================================== */
:root {
  /* brand */
  --navy:         #12233f;
  --navy-deep:    #0b1729;
  --navy-lift:    #1c3357;
  --gold:         #a8874f;   /* matte, not bright */
  --gold-soft:    #bb9c63;
  --gold-deep:    #8a6d3a;
  --gold-wash:    #f2ecdf;
  --slate:        #7b8698;
  --ivory:        #f7f6f3;

  /* roles */
  --brand:        var(--navy);
  --brand-dark:   var(--navy-deep);
  --brand-light:  #16294a;
  --gold-wash-d:  rgba(168,135,79,.12);
  --accent:       var(--gold);

  --ink:          #f2f4f8;          /* ivory text on navy */
  --ink-soft:     #94a3ba;
  --line:         #1d3255;
  --line-2:       #2b4570;
  --bg:           #0a1425;          /* page ground */
  --bg-soft:      #101f38;          /* lifted band */
  --card:         #111f38;
  --card-2:       #16294a;

  /* type */
  --font-sans:    "SF Pro Text", -apple-system, BlinkMacSystemFont, "Inter",
                  "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont,
                  "Inter Tight", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;

  --radius:       12px;
  --radius-lg:    18px;
  --shadow:       0 1px 2px rgba(0,0,0,.35), 0 10px 28px rgba(0,0,0,.32);
  --shadow-lift:  0 6px 16px rgba(0,0,0,.42), 0 22px 48px rgba(0,0,0,.46);
  --wrap:         1140px;
  --header-h:     70px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: "cv02","cv03","cv04","cv11";
  color: var(--ink);
  background:
    radial-gradient(1200px 620px at 50% -10%, rgba(28,51,87,.75), transparent 70%),
    var(--bg);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-soft); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.14;
                 margin: 0 0 .5em; letter-spacing: -.028em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); border-block: 1px solid var(--line); }
.section-head { max-width: 620px; margin-bottom: 40px; }
.section-head p { color: var(--ink-soft); margin: 0; font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: #101c31;
                box-shadow: 0 2px 10px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.12); }
.btn--primary:hover { background: linear-gradient(180deg, var(--gold), var(--gold-deep)); color: var(--ivory); }
.btn--gold { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: #17223a;
             box-shadow: 0 2px 8px rgba(138,109,58,.18); }
.btn--gold:hover { background: linear-gradient(180deg, var(--gold), var(--gold-deep)); color: var(--ivory); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); background: var(--gold-wash-d); }
.btn--light { background: var(--ivory); color: var(--navy); }
.btn--light:hover { background: #e6e2d6; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-soft); background: var(--gold-wash-d); }
.btn--wide { width: 100%; justify-content: center; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10,20,37,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); font-size: 1.05rem;
        font-family: var(--font-display); letter-spacing: -.02em; }
.logo:hover { text-decoration: none; }
/* The six-wedge pinwheel from the company mark, drawn in CSS. */
.logo-mark {
  position: relative;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 0;
  background: conic-gradient(
    var(--navy)      0deg  60deg,
    var(--gold-soft) 60deg 120deg,
    var(--slate)    120deg 180deg,
    var(--navy)     180deg 240deg,
    var(--gold-deep) 240deg 300deg,
    var(--gold)     300deg 360deg);
  box-shadow: 0 0 0 1px rgba(18,35,63,.18);
}
.logo-mark::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 7px; height: 7px; border-radius: 50%; background: var(--ivory);
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--ink-soft); font-size: .95rem; font-weight: 500; }
.nav a:hover { color: var(--gold-soft); text-decoration: none; }
.nav a.is-active { color: var(--gold-soft); font-weight: 600; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--card);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 2px; margin: 0 auto;
  background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { content: ""; position: absolute; top: -6px; }
.nav-toggle span::after  { content: ""; position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--ivory);
  padding: 104px 0 92px;
  background: linear-gradient(180deg, #0c1830 0%, var(--navy-deep) 100%);
}
/* the gold halo behind the headline */
.hero::before {
  content: "";
  position: absolute; top: -48%; left: 50%; transform: translateX(-50%);
  width: 1040px; height: 1040px; border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(168,135,79,.15), rgba(123,134,152,.08) 42%, transparent 68%);
}
/* fade the halo into the page so the stat cards sit on clean ground */
.hero::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(10,20,37,.92));
}
.hero .wrap { position: relative; z-index: 1; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; letter-spacing: .02em;
  color: var(--ink-soft);
  background: rgba(21,32,54,.72);
  border: 1px solid var(--line-2);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(168,135,79,.16);
}

.hero h1 {
  color: var(--ivory);
  font-size: clamp(2.5rem, 6.4vw, 4.4rem);
  letter-spacing: -.035em;
  line-height: 1.04;
  margin: 0 auto .4em;
  max-width: 18ch;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #e0cfa6, var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  color: var(--ink-soft);
  font-size: 1.12rem;
  max-width: 56ch;
  margin: 0 auto;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; justify-content: center; }

/* four separate cards, not one joined strip */
.hero-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 70px;
  text-align: left;
}
.hero-strip div {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  transition: border-color .22s, transform .22s;
}
.hero-strip div::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  opacity: .5;
}
.hero-strip div:hover { border-color: var(--line-2); transform: translateY(-2px); }
.hero-strip div:hover::before { opacity: 1; }
.hero-strip strong {
  display: block; font-size: 1.7rem; letter-spacing: -.03em; margin-bottom: 2px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-strip span { font-size: .85rem; color: var(--ink-soft); }

/* Small page banner for interior pages */
.page-head {
  position: relative;
  background:
    radial-gradient(760px 320px at 82% -40%, rgba(168,135,79,.20), transparent 62%),
    linear-gradient(170deg, var(--navy-lift), var(--navy-deep));
  border-bottom: 1px solid var(--line);
  padding: 64px 0 56px;
}
.page-head h1 { color: var(--ivory); }
.page-head p { color: rgba(247,246,243,.74); max-width: 60ch; margin: 0; font-size: 1.05rem; }

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.feature {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.feature-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--gold-wash-d);
  border: 1px solid rgba(168,135,79,.26);
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.feature h3 { margin-bottom: 6px; }
.feature p { color: var(--ink-soft); margin: 0; font-size: .95rem; }

/* Product card */
.card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--line-2); }
.card a { text-decoration: none; color: inherit; }

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--navy-deep);
  overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, #16294a, #0d1c33);
  color: var(--gold-soft);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.04em;
  opacity: .75;
}
.card-cat {
  position: absolute; top: 12px; left: 12px;
  background: rgba(10,20,37,.82);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(6px);
  color: var(--gold-soft);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.card-body p { color: var(--ink-soft); font-size: .92rem; margin: 0 0 16px; }
.card-foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.price { font-weight: 700; font-size: 1.05rem; }
.price small { font-weight: 500; color: var(--ink-soft); font-size: .8rem; }
.price--quote { font-size: .92rem; font-weight: 600; color: var(--gold-soft); }
.card-link { font-size: .9rem; font-weight: 600; color: var(--gold-soft); }

/* ==========================================================================
   Filters / search
   ========================================================================== */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 28px;
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s;
}
.chip:hover { border-color: var(--gold); color: var(--gold-soft); }
.chip.is-active { background: linear-gradient(180deg, var(--gold-soft), var(--gold));
                  border-color: var(--gold); color: #101c31; }

.search { position: relative; flex: 0 1 280px; }
.search input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: .92rem;
  background: var(--card);
  color: var(--ink);
}
.search input::placeholder { color: #6f7f96; }
.search input:focus { outline: 2px solid var(--gold); outline-offset: -1px; border-color: transparent; }
.search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); }

.result-count { color: var(--ink-soft); font-size: .9rem; margin-bottom: 20px; }
.empty {
  text-align: center;
  padding: 70px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
}
.empty h3 { color: var(--ink); }
.empty { background: rgba(16,31,56,.45); }

/* ==========================================================================
   Product detail
   ========================================================================== */
.crumbs { font-size: .88rem; color: var(--ink-soft); padding: 20px 0; }
.crumbs a { color: var(--gold-soft); }
.crumbs span { margin: 0 6px; opacity: .5; }

.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding-bottom: 72px; }
.detail-media {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-deep);
}
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-media .placeholder { font-size: 4rem; }

.detail h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.detail-price { font-size: 1.9rem; font-weight: 700; margin: 18px 0 6px; }
.detail-price small { font-size: .95rem; font-weight: 500; color: var(--ink-soft); }
.detail-lede { font-size: 1.05rem; color: var(--ink-soft); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.tags li {
  font-size: .78rem; font-weight: 600;
  background: var(--gold-wash-d); color: var(--gold-soft);
  border: 1px solid rgba(168,135,79,.28);
  padding: 5px 12px; border-radius: 999px;
}

.spec-table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: .94rem; }
.spec-table th, .spec-table td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--line); }
.spec-table th { color: var(--ink-soft); font-weight: 500; width: 45%; }
.spec-table td { color: var(--ink); }
.spec-table td { font-weight: 600; }

.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.detail-note { font-size: .88rem; color: var(--ink-soft); margin-top: 14px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta {
  background:
    radial-gradient(700px 300px at 88% -30%, rgba(168,135,79,.28), transparent 62%),
    linear-gradient(160deg, var(--navy-lift), var(--navy-deep));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta h2 { color: var(--ivory); margin-bottom: 6px; }
.cta p { color: rgba(247,246,243,.76); margin: 0; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: .95rem;
  background: var(--card);
  color: var(--ink);
}
.field input::placeholder, .field textarea::placeholder { color: #6f7f96; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--gold); outline-offset: -1px; border-color: transparent;
}
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: 12px; }

.info-card {
  background: linear-gradient(155deg, rgba(168,135,79,.10), rgba(123,134,152,.05) 55%, var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.info-list .info-icon { color: var(--gold-soft); flex-shrink: 0; margin-top: 3px; }
.info-list strong { display: block; font-size: .82rem; color: var(--ink-soft); font-weight: 600;
                    text-transform: uppercase; letter-spacing: .05em; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,.68);
  padding: 56px 0 28px;
}
.footer a { color: rgba(255,255,255,.68); }
.footer a:hover { color: var(--gold-soft); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer h4 { color: var(--gold-soft); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; font-size: .93rem; }
.footer .logo { color: var(--ivory); margin-bottom: 14px; }
.footer-about { font-size: .93rem; max-width: 38ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 40px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .86rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .detail { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .hero { padding: 72px 0 64px; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-open .nav { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav .btn { margin-top: 16px; justify-content: center; border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta { padding: 36px 28px; }
}
