/* NamaSpray — HHH-style palette + glass UI */




:root{
  /* Background layers */
  --bg-top: #0F2E33;      /* deep teal */
  --bg-mid: #174640;      /* pine */
  --bg-low: #1F5B4E;      /* green-teal */

  /* Surfaces */
  --bone: #F2F3EF;        /* warm off-white */
  --surface: rgba(243,244,240,.82); /* frosted surface */
  --surface-2: rgba(255,255,255,.58);

  /* Text */
  --ink: #1B2422;         /* soft charcoal */
  --muted: rgba(27,36,34,.72);

  /* Sage accents */
  --sage: #8FAFA4;
  --sage-deep: #5E857B;

  /* Borders + shadows */
  --border: rgba(17,34,34,.16);
  --border-soft: rgba(255,255,255,.38);
  --shadow: 0 22px 60px rgba(0,0,0,.18);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.12);

  --r: 24px;
  
  
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);

  /* Deep gradient + subtle haze */
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(143,175,164,.22), transparent 60%),
    radial-gradient(800px 520px at 85% 18%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 45%, var(--bg-low) 100%);
}

a{ color: inherit; }
.container{ width:min(1120px, 92vw); margin-inline:auto; }
.section{ padding: 46px 0; }

.nav{
  position: sticky; top: 0; z-index: 20;
  background: rgba(243,244,240,.60);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.42);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding: 14px 0;
  
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none; color: var(--ink);
}
.brand-mark{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}
.brand-name{ font-weight: 850; letter-spacing:.2px; line-height:1.05; }
.brand-sub{ font-size: 12px; color: var(--muted); margin-top:2px; }

.menu{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.menu a{
  color: rgba(27,36,34,.72);
  text-decoration:none;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.46);
  border: 1px solid rgba(255,255,255,.55);
}
.menu a:hover{
  color: var(--ink);
  background: rgba(255,255,255,.62);
}
.menu a.active{
  color: #fff;
  background: rgba(94,133,123,.92);
  border-color: rgba(94,133,123,.92);
}

.hero{ padding: 42px 0 12px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .9fr;
  gap: 18px;
  align-items: stretch;
}

.card{
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-card{
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.hero-card::before{
  content:"";
  position:absolute; inset: 10px;
  border-radius: calc(var(--r) - 10px);
  background:
    radial-gradient(600px 260px at 25% 30%, rgba(255,255,255,.65), transparent 60%),
    radial-gradient(520px 260px at 80% 10%, rgba(143,175,164,.22), transparent 55%),
    rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.38);
  pointer-events:none;
}
.hero-card > *{ position: relative; z-index: 1; }

.kicker{
  color: rgba(27,36,34,.72);
  font-size: 13px;
  margin-bottom: 10px;
}
h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -0.6px;
  line-height: 1.05;
}
.lede{
  margin: 0 0 16px;
  color: rgba(27,36,34,.72);
  line-height: 1.6;
  font-size: 16px;
}

.hero-actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.btn{
  appearance:none;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.62);
  color: var(--ink);
  padding: 11px 14px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 800;
  cursor:pointer;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
  transition: transform .06s ease, background .15s ease;
}
.btn:hover{ background: rgba(255,255,255,.74); }
.btn:active{ transform: translateY(1px); }

.btn.primary{
  background: rgba(94,133,123,.96);
  border-color: rgba(94,133,123,.96);
  color: #fff;
}
.btn.primary:hover{ background: rgba(79,120,110,.96); }
.btn.small{ padding: 10px 12px; }

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(255,255,255,.56);
  color: rgba(27,36,34,.78);
  font-weight: 800;
  font-size: 12px;
}
.hero-meta{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }

.visual{ padding: 18px; }
.visual-inner{ display:flex; flex-direction:column; gap:12px; }

.badge{
  display:inline-flex;
  align-self:flex-start;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.54);
  border: 1px solid rgba(255,255,255,.58);
  color: rgba(27,36,34,.80);
  font-weight: 900;
  font-size: 12px;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature{ padding: 18px; }
.feature .icon{ font-size: 24px; }
.feature h3{ margin: 10px 0 6px; }
.feature p{ margin:0; color: rgba(27,36,34,.72); line-height:1.55; }

/* Product cards: prevent button overlap */
.feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Push buy button to bottom of card */
.feature .btn {
  margin-top: auto;
}


.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
h2{ margin: 0 0 10px; letter-spacing:-.2px; }
ul{ margin: 8px 0 0; padding-left: 18px; color: rgba(27,36,34,.72); }
ol{ color: rgba(27,36,34,.72); }
.note{
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.50);
  border: 1px solid rgba(255,255,255,.56);
  color: rgba(27,36,34,.72);
  font-size: 13px;
}

.footer{
  margin-top: 26px;
  padding: 26px 0;
  background: transparent;
  color: rgba(255,255,255,.78);
}
.footer a{ color: rgba(255,255,255,.78); text-decoration:none; }
.footer a:hover{ color: #fff; }

.toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display:flex; gap:10px; align-items:center;
  padding: 12px 14px;
  background: rgba(15,23,22,.92);
  color: #fff;
  border-radius: 999px;
  opacity: 0;
  pointer-events:none;
  transition: opacity .15s ease;
}
.toast.show{ opacity: 1; }

.page{
  padding: 38px 0 12px;
}
.page h1{ margin-top: 6px; }

.form{
  display:grid; gap: 12px;
}
.field{
  display:grid; gap: 6px;
}
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.60);
  background: rgba(255,255,255,.60);
  outline: none;
  font: inherit;
}
input:focus, textarea:focus{
  border-color: rgba(143,175,164,.55);
  box-shadow: 0 0 0 4px rgba(143,175,164,.18);
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 246, 0.88); /* lighter */
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31,42,37,.10);
}

/* Mobile header fix */
@media (max-width: 720px){

  .nav-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
  }

  /* Brand row */
  .brand{
    width: 100%;
    gap: 10px;
  }

  /* Optional: shrink the brand mark a bit on mobile */
  .brand-mark{
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  /* If you’re using an <img> logo in the brand, cap it */
  .brand img{
    max-height: 36px;
    width: auto;
    height: auto;
  }

  /* Menu becomes a nice wrapped row */
  .menu{
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .menu a{
    padding: 8px 10px;
    font-size: 13px;
    white-space: nowrap;
  }
  
  .product-image {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.6);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.product-image img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.12));
}

}

