
:root{
  --ink:#14211F;
  --muted:#33504B;
  --bg:#F7FFF9;
  --card:#ffffff;
  --line:rgba(20,33,31,.10);
  --accent1:#7DE3B9; /* mint */
  --accent2:#9AD7FF; /* sky */
  --accent3:#FFC7DE; /* blush */
  --accent4:#FFE58F; /* butter */
  --accent5:#C9B6FF; /* lilac */
  --shadow: 0 18px 45px rgba(0,0,0,.08);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1000px 500px at 20% 0%, rgba(125,227,185,.22), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(154,215,255,.22), transparent 55%),
    radial-gradient(900px 500px at 60% 100%, rgba(255,199,222,.18), transparent 55%),
    var(--bg);
}

a{color:inherit; text-decoration:none}
.container{max-width:1120px; margin:0 auto; padding:0 18px}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.78);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 14px 30px rgba(0,0,0,.09)}
.btn.primary{
  border: none;
  background: linear-gradient(135deg, var(--accent1), var(--accent2), var(--accent3));
}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(247,255,249,.75);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
  gap: 16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{height:44px; width:auto}
.brand .tag{
  font-size:12px; color:var(--muted);
  display:block; margin-top:2px;
}
.menu{
  display:flex; align-items:center; gap: 10px;
  flex-wrap: wrap;
}
.menu a{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  color:var(--muted);
}
.menu a:hover{
  border-color: var(--line);
  background: rgba(255,255,255,.65);
  color: var(--ink);
}
.menu a.active{
  border-color: rgba(20,33,31,.14);
  background: rgba(255,255,255,.85);
  color: var(--ink);
}

.hero{
  padding: 30px 0 18px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
}
.heroCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroContent{padding: 24px 22px}
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 12px;
  color: var(--muted);
  border:1px solid var(--line);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
}
h1{margin:14px 0 10px; font-size: 38px; line-height: 1.15}
p{margin: 0 0 12px; color: var(--muted); line-height:1.6}
.heroActions{display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px}
.heroArt{
  position:relative;
  min-height: 310px;
  display:flex;
  align-items: stretch;
  justify-content: stretch;
}
.heroArt .artBg{
  position:absolute; inset:0;
  background:
    radial-gradient(420px 220px at 25% 20%, rgba(255,229,143,.45), transparent 60%),
    radial-gradient(420px 220px at 75% 25%, rgba(201,182,255,.40), transparent 60%),
    radial-gradient(420px 220px at 55% 80%, rgba(125,227,185,.35), transparent 62%),
    rgba(255,255,255,.80);
}
.heroArt img{
  position:relative;
  width:100%;
  height:100%;
  object-fit: cover;
  opacity: .95;
  mix-blend-mode: multiply;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 14px 0 0;
}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
}
.card h3{margin: 0 0 8px; font-size: 16px}
.pills{display:flex; flex-wrap:wrap; gap:8px; margin-top: 10px}
.pill{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  color: var(--muted);
}

.section{padding: 14px 0 26px}
.sectionTitle{
  display:flex; align-items:flex-end; justify-content:space-between; gap: 12px;
  margin-top: 10px;
}
.sectionTitle h2{margin: 0; font-size: 22px}
.sectionTitle .hint{color: var(--muted); font-size: 13px}

.tableWrap{overflow:auto; border-radius: var(--radius); border:1px solid var(--line); background: rgba(255,255,255,.82)}
table{width:100%; border-collapse: collapse; min-width: 720px}
th,td{padding: 12px 12px; border-bottom:1px solid var(--line); text-align:left; vertical-align: top}
th{font-size: 12px; letter-spacing:.04em; text-transform: uppercase; color: var(--muted)}
tbody tr:hover{background: rgba(125,227,185,.08)}

.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0 26px;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 14px;
}
.small{font-size: 13px; color: var(--muted)}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  border:1px solid var(--line);
  background: rgba(255,255,255,.7);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.form{
  display:grid; gap: 10px;
}
.input{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border:1px solid rgba(20,33,31,.14);
  background: rgba(255,255,255,.82);
  outline: none;
}
textarea.input{min-height: 120px; resize: vertical}

.notice{
  border-radius: var(--radius);
  border: 1px dashed rgba(20,33,31,.25);
  background: rgba(255,255,255,.70);
  padding: 14px;
  color: var(--muted);
}

@media (max-width: 920px){
  .heroGrid{grid-template-columns: 1fr}
  .heroArt{min-height: 220px}
  .grid{grid-template-columns: 1fr}
  .footerGrid{grid-template-columns: 1fr}
  h1{font-size: 32px}
}


/* Spring accents */
.flower-corners{
  position:relative;
  overflow:hidden;
}
.flower-corners:before,
.flower-corners:after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  opacity:.22;
  background-size:contain;
  background-repeat:no-repeat;
  pointer-events:none;
}
.flower-corners:before{
  left:-40px; top:-40px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg stroke='%2314211F' stroke-opacity='.20' stroke-width='2'%3E%3Ccircle cx='60' cy='30' r='18' fill='%23FFC7DE'/%3E%3Ccircle cx='90' cy='52' r='18' fill='%239AD7FF'/%3E%3Ccircle cx='78' cy='86' r='18' fill='%23FFE58F'/%3E%3Ccircle cx='42' cy='86' r='18' fill='%23C9B6FF'/%3E%3Ccircle cx='30' cy='52' r='18' fill='%237DE3B9'/%3E%3Ccircle cx='60' cy='60' r='14' fill='%23FFF8D1'/%3E%3C/g%3E%3C/svg%3E");
}
.flower-corners:after{
  right:-40px; bottom:-40px;
  transform:rotate(180deg);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg stroke='%2314211F' stroke-opacity='.20' stroke-width='2'%3E%3Ccircle cx='60' cy='30' r='18' fill='%23FFC7DE'/%3E%3Ccircle cx='90' cy='52' r='18' fill='%239AD7FF'/%3E%3Ccircle cx='78' cy='86' r='18' fill='%23FFE58F'/%3E%3Ccircle cx='42' cy='86' r='18' fill='%23C9B6FF'/%3E%3Ccircle cx='30' cy='52' r='18' fill='%237DE3B9'/%3E%3Ccircle cx='60' cy='60' r='14' fill='%23FFF8D1'/%3E%3C/g%3E%3C/svg%3E");
}

.details{
  margin-top:12px;
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.76));
}
.details summary{
  cursor:pointer;
  list-style:none;
  font-weight:700;
}
.details summary::-webkit-details-marker{display:none}
.details summary:after{
  content:"▾";
  float:right;
  opacity:.7;
}
.details[open] summary:after{content:"▴"}
.small{font-size:.92rem}
.bullets{margin:0; padding-left:18px}
.bullets li{margin:8px 0}


/* Sharp, highly visible product table */
.sharpTable{
  border: 1.5px solid rgba(20,33,31,.22) !important;
  background: rgba(255,255,255,.92) !important;
}
.sharpTable table{min-width: 860px}
.sharpTable th, .sharpTable td{
  border-bottom: 1px solid rgba(20,33,31,.14) !important;
}
.sharpTable thead th{
  position: sticky;
  top: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(125,227,185,.35), rgba(154,215,255,.35), rgba(255,199,222,.32));
  color: #14211F;
}
.sharpTable tbody td a{
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* Sharp lineup table (high contrast, very readable) */
.table-wrap--sharp{
  border: 1.5px solid rgba(20,33,31,.25);
  border-radius: 16px;
  overflow:auto;
  background: rgba(255,255,255,.92);
}
.table--sharp thead th{
  position: sticky;
  top: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(125,227,185,.30), rgba(154,215,255,.30), rgba(255,199,222,.28));
  color: #14211F;
}
.table--sharp th, .table--sharp td{
  border-bottom: 1px solid rgba(20,33,31,.14);
}
.table--sharp tbody tr:hover{
  background: rgba(125,227,185,.08);
}
.table--sharp a{
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* simple anti-bot checkbox */
.humanCheck{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 12px;
  border-radius: 12px;
  border:1px solid rgba(20,33,31,.14);
  background: rgba(255,255,255,.82);
  color: var(--ink);
}
.humanCheck input{
  width: 18px;
  height: 18px;
  accent-color: var(--accent2);
}
.humanHint{color: var(--muted);}

/* Accessibility: skip link */
.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:#fff;
  border:1px solid rgba(20,33,31,.18);
  padding:10px 12px;
  border-radius:12px;
  z-index:999;
}
.skip-link:focus{left:10px;}
