:root{
  --bg:#fbfbfc;
  --surface:#ffffff;
  --text:#14161a;
  --muted:#5a616b;
  --border:#e7e9ee;
  --accent:#2a5b7a;
  --accent2:#3a7b6b;
  --shadow: 0 14px 40px rgba(17, 24, 39, .08);
  --radius: 18px;
  --max: 860px;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
*{box-sizing:border-box}
html,body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(880px 420px at 14% -12%, #dbdad926, transparent 62%),
    radial-gradient(880px 420px at 92% -6%, #eaeaea24, transparent 60%),
    #f6f6f7;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(42,91,122,.10), transparent 60%),
    radial-gradient(900px 420px at 90% 0%, rgba(58,123,107,.10), transparent 60%),
    var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding: 0 18px;}
.header{
  position:sticky; top:0; z-index:20;
  background: #ffffff; /* PURE WHITE */
  backdrop-filter: none; /* optional */
  border-bottom:1px solid rgba(231,233,238,.85);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 12px;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 210px;}
.logo{
  width: 132px; height: 42px;
  border: 1px dashed rgba(90,97,107,.45);
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  color: var(--muted);
  background: rgba(255,255,255,.7);
  font-size: 12.5px;
}
.brand-name{font-weight:780; letter-spacing:.2px; font-size:18px;}
.nav{display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end;}
.nav a{
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
}
.nav a:hover{border-color:var(--border); background: rgba(255,255,255,.75); color: var(--text);}
.nav a[aria-current="page"]{
  border-color: rgba(42,91,122,.25);
  background: rgba(42,91,122,.08);
  color: var(--text);
}
.main{padding: 42px 0 54px;}
.center{text-align:center;}
.kicker{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.h1{
  margin: 10px 0 10px;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -.02em;
}
.lead{
  margin: 0 auto;
  max-width: 66ch;
  color: var(--muted);
  font-size: 16px;
}
.card{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(231,233,238,.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-pad{padding: 22px;}
.section{margin-top: 18px;}
.hr{height:1px; background: rgba(231,233,238,.95); margin: 18px 0;}
.badges{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:center;
  margin-top: 14px;
}
.badge{
  display:inline-flex; align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(231,233,238,.95);
  background: rgba(255,255,255,.78);
  color: var(--muted);
  font-size: 13px;
}
.btnrow{display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-top: 18px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 11px 14px;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight: 680;
  cursor:pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}
.btn:active{transform: translateY(1px);}
.btn-primary{
  background: rgba(42,91,122,.94);
  color: #fff;
  border-color: rgba(42,91,122,.94);
}
.btn-primary:hover{background: rgba(42,91,122,1);}
.btn-ghost{
  background: rgba(255,255,255,.78);
  border-color: rgba(231,233,238,.95);
  color: var(--text);
}
.btn-ghost:hover{border-color: rgba(42,91,122,.22);}

.products{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}
.product{
  overflow:hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(231,233,238,.95);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  transition: transform .12s ease, border-color .15s ease;
}
.product:hover{transform: translateY(-1px); border-color: rgba(42,91,122,.24);}
.product .media{
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(42,91,122,.10), rgba(58,123,107,.10));
  border-bottom: 1px solid rgba(231,233,238,.95);
  display:flex; align-items:center; justify-content:center;
}
.product img{width: 88%; height: 84%; object-fit: contain;}
.product .body{padding: 16px 16px 18px; text-align:left;}
.product h3{margin:0 0 6px; font-weight: 760;}
.product p{margin:0; color: var(--muted); font-size: 14.5px;}
.product .link{margin-top: 12px; display:inline-flex; gap:8px; color: var(--accent); font-weight: 680;}

.list{
  margin: 12px auto 0;
  padding-left: 18px;
  max-width: 72ch;
  color: var(--muted);
  text-align:left;
}
.list li{margin: 10px 0;}

.form{
  display:grid;
  gap: 10px;
  margin-top: 10px;
  text-align:left;
}
label{font-size: 13px; color: var(--muted); display:block; margin-bottom: 6px;}
input, select, textarea{
  width:100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(231,233,238,.95);
  background: rgba(255,255,255,.9);
  color: var(--text);
  font: inherit;
}
textarea{min-height: 110px; resize: vertical;}
.row2{display:grid; grid-template-columns: 1fr 1fr; gap: 10px;}
.help{margin: 6px 0 0; color: var(--muted); font-size: 12px;}

.terms{
  margin-top: 16px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
  text-align:left;
}
.terms summary{
  cursor:pointer;
  font-weight: 700;
  color: var(--text);
  list-style:none;
}
.terms summary::-webkit-details-marker{display:none;}
.terms summary:after{content:"▾"; float:right; color: var(--muted);}
.terms[open] summary:after{content:"▴";}
.terms ol{margin: 10px 0 0; padding-left: 18px;}
.terms li{margin: 8px 0;}

.cta-end{
  margin-top: 18px;
}
.cta-end a{display:inline-flex;}

.footer{
  border-top: 1px solid rgba(231,233,238,.95);
  padding: 22px 0 36px;
  color: var(--muted);
  font-size: 13px;
}
.footer .kv{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:center;
  margin-top: 10px;
}
.footer .kv span{
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(231,233,238,.95);
  background: rgba(255,255,255,.75);
}

@media (max-width: 720px){
  .products{grid-template-columns: 1fr;}
  .row2{grid-template-columns: 1fr;}
  .brand{min-width: unset;}
  .logo{width: 118px;}
}

/* Logo image placeholder */
.logo-img{
  width: 132px;
  height: 42px;
  object-fit: contain;
  border: 1px dashed rgba(90,97,107,.45);
  border-radius: 14px;
  background: rgba(255,255,255,.7);
  padding: 6px;
}
@media (max-width: 720px){
  .logo-img{ width: 118px; height: 42px; }
}

/* Hamburger menu */
.logo-img{width:160px;height:auto;}
.menu-btn{background:none;border:0;cursor:pointer;}
.menu-icon{width:22px;height:2px;background:#333;display:block;position:relative;}
.menu-icon::before,.menu-icon::after{content:"";position:absolute;left:0;width:22px;height:2px;background:#333;}
.menu-icon::before{top:-7px;}
.menu-icon::after{top:7px;}
.menu{background:#fff;text-align:center;}
.menu a{display:block;padding:14px 0;}


/* Logo: no border/lines, blend with page */
.logo-img{
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Side drawer menu */
.drawer-overlay{
  position: fixed;
  inset: 0;
  background: rgba(20, 22, 26, .38);
  backdrop-filter: blur(2px);
  z-index: 40;
}

.drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 86vw);
  background: rgba(251,251,252,.98);
  border-left: 1px solid rgba(231,233,238,.95);
  box-shadow: 0 22px 60px rgba(17,24,39,.22);
  z-index: 50;
  padding: 10px 10px 16px;
  transform: translateX(102%);
  transition: transform .22s ease;
}

.drawer.is-open{
  transform: translateX(0);
}

.drawer-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 10px 8px;
}

.drawer-title{
  font-family: var(--mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted, #5a616b);
}

.drawer-close{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(231,233,238,.95);
  background: rgba(255,255,255,.78);
  cursor:pointer;
  transition: transform .08s ease, border-color .15s ease;
}
.drawer-close:active{transform: translateY(1px);}
.drawer-close:hover{border-color: rgba(42,91,122,.22);}

.drawer a{
  display:block;
  padding: 12px 12px;
  margin: 6px 8px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: var(--muted, #5a616b);
}
.drawer a:hover{
  color: var(--text, #14161a);
  background: rgba(255,255,255,.82);
  border-color: rgba(231,233,238,.95);
}
.drawer a[aria-current="page"]{
  color: var(--text, #14161a);
  background: rgba(42,91,122,.08);
  border-color: rgba(42,91,122,.25);
}

/* Prevent body scroll when drawer open */
body.drawer-open{ overflow: hidden; }


/* Hero modern blend */
.hero-intro{
  text-align:center;
  margin: 18px auto 8px;
}

.hero-blend{
  --hero-top: #4c4945;
  --hero-bottom: #8c8c8d;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 260px at 18% 8%, color-mix(in srgb, var(--hero-top) 60%, transparent), transparent 65%),
    radial-gradient(620px 260px at 82% 6%, color-mix(in srgb, var(--hero-top) 48%, transparent), transparent 65%),
    linear-gradient(180deg, var(--hero-top), var(--hero-bottom));
}

.hero-img{
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: radial-gradient(150% 130% at 50% 48%, #000 88%, transparent 100%);
  mask-image: radial-gradient(150% 130% at 50% 48%, #000 88%, transparent 100%);
}

.hero-blend::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(120% 100% at 50% 45%, rgba(0,0,0,0) 68%, #f6f6f7f0 96%),
    linear-gradient(180deg, rgba(251,251,252,0.0), rgba(251,251,252,0.20));
}

@keyframes heroFadeIn{
  from{opacity:0; transform: translateY(16px) scale(.985); filter: saturate(.96);}
  to{opacity:1; transform: translateY(0) scale(1); filter: saturate(1);}
}

.fade-in-onload{
  opacity:0;
  animation: heroFadeIn .75s ease-out forwards;
  animation-delay: .06s;
}
