/* MintSlate — parent-brand site
   Brand: sage green (#90a890) + slate (#3c4854). Light, editorial, organic-premium.
   Elegant serif display (Fraunces) echoing the logo, clean sans body.
   Visuals are pure CSS — the only images are the logo/icon the brand supplies. */

:root {
  --paper: #f5f7f2;
  --paper-2: #eef1e9;
  --white: #ffffff;
  --card: #ffffff;

  --slate: #3c4854;      /* brand slate — headings */
  --ink: #2c343d;        /* strongest text */
  --text: #45515b;       /* body */
  --muted: #79858c;      /* secondary */
  --muted-2: #9aa4a6;    /* faint */

  --sage: #90a890;       /* brand sage */
  --sage-deep: #5f7d61;  /* accessible sage for text/links on white */
  --sage-deeper: #4c6a4e;
  --sage-tint: rgba(144, 168, 144, 0.14);
  --sage-tint-2: rgba(144, 168, 144, 0.08);

  --line: rgba(60, 72, 84, 0.12);
  --line-strong: rgba(60, 72, 84, 0.2);

  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1200px;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background: soft sage washes on warm paper */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(820px 560px at 84% -6%, rgba(144, 168, 144, 0.24), transparent 60%),
    radial-gradient(680px 620px at 2% 4%, rgba(144, 168, 144, 0.12), transparent 58%),
    radial-gradient(1000px 780px at 50% 120%, rgba(144, 168, 144, 0.14), transparent 62%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--display); color: var(--slate); line-height: 1.06; letter-spacing: -0.01em; font-weight: 500; }
h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.32rem; font-weight: 600; letter-spacing: 0; }
em { font-style: italic; color: var(--sage-deep); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--sage-deep);
  opacity: 0.6;
}
.eyebrow.badge {
  background: var(--sage-tint);
  border: 1px solid rgba(144, 168, 144, 0.35);
  padding: 7px 15px 7px 13px;
  border-radius: 100px;
}
.eyebrow.badge::before { display: none; }
.eyebrow.badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage-deep);
  box-shadow: 0 0 0 4px rgba(144, 168, 144, 0.18);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.accent { color: var(--sage-deep); font-style: italic; }
.lead { color: var(--muted); font-size: 1.22rem; max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 27px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--slate);
  color: #f3f6f2;
  box-shadow: 0 10px 26px rgba(60, 72, 84, 0.22);
}
.btn-primary:hover { transform: translateY(-2px); background: #333e48; box-shadow: 0 16px 34px rgba(60, 72, 84, 0.3); }
.btn-ghost {
  background: var(--white);
  border-color: var(--line-strong);
  color: var(--slate);
}
.btn-ghost:hover { border-color: var(--sage); background: var(--sage-tint-2); }
.btn-lg { padding: 18px 34px; font-size: 1.08rem; }

/* ---------- Logo ---------- */
.brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo { height: 120px; width: auto; }
.site-footer .brand-logo { height: 110px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(245, 247, 242, 0.8);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 32px; min-height: 96px; padding: 6px 0; }
.nav-links { flex: 1; display: flex; align-items: center; justify-content: center; gap: 38px; }
.nav-links a { color: var(--text); font-weight: 600; font-size: 0.95rem; transition: color 0.15s; }
.nav-links a:hover { color: var(--sage-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; margin-left: auto; flex: none; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 108px 0 92px; position: relative; }
.hero-inner { max-width: 940px; position: relative; z-index: 1; }
.hero-watermark {
  position: absolute;
  right: -60px; top: -40px;
  width: 440px; max-width: 46vw;
  opacity: 0.06;
  transform: rotate(6deg);
  pointer-events: none;
  z-index: 0;
}
.hero .eyebrow { opacity: 0; animation: rise 0.7s ease 0.05s forwards; }
.hero h1 { margin: 0 0 26px; opacity: 0; animation: rise 0.7s ease 0.1s forwards; }
.hero .lead { margin-bottom: 38px; opacity: 0; animation: rise 0.7s ease 0.24s forwards; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; opacity: 0; animation: rise 0.7s ease 0.34s forwards; }
.hero-trust {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  animation: rise 0.7s ease 0.44s forwards;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust span::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%; flex: none;
  background: var(--sage-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f7d61' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
  border: 1px solid rgba(144, 168, 144, 0.4);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.5); }
.trust-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-top: 24px; padding-bottom: 24px; }
.trust-label { font-size: 0.74rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.trust-items { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.trust-items span { color: var(--slate); font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 10px; }
.trust-items span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }

/* ---------- Section scaffold ---------- */
section { position: relative; }
.section { padding: 108px 0; }
.section-head { max-width: 700px; margin: 0 auto 62px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head.left .eyebrow::before { display: inline-block; }
.section-head p { color: var(--muted); font-size: 1.16rem; margin-top: 18px; }
.divider { height: 1px; background: var(--line); }

/* ---------- Products ---------- */
.products { display: grid; gap: 22px; }
.product {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 46px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 18px 44px rgba(60, 72, 84, 0.05);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.product:hover { border-color: rgba(144, 168, 144, 0.5); box-shadow: 0 24px 54px rgba(60, 72, 84, 0.1); transform: translateY(-2px); }
.product-status {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 700;
  color: var(--sage-deep); margin-bottom: 18px;
}
.product-status.soon { color: var(--muted-2); }
.product-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sage-deep); box-shadow: 0 0 0 4px var(--sage-tint); }
.product-status.soon::before { background: var(--muted-2); box-shadow: 0 0 0 4px rgba(154, 164, 166, 0.15); }
.product h3 { font-size: 2rem; font-weight: 500; margin-bottom: 12px; }
.product .tagline { color: var(--text); font-size: 1.07rem; margin-bottom: 24px; }
.product-links { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.product-link { font-weight: 700; font-size: 0.95rem; color: var(--sage-deep); display: inline-flex; align-items: center; gap: 7px; transition: gap 0.2s, color 0.2s; }
.product-link:hover { gap: 11px; color: var(--sage-deeper); }
.product-link.muted { color: var(--muted); }
.product-link.muted:hover { color: var(--slate); }

/* Mini storefront-widget mock inside the flagship product card */
.pcard {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fbfcfa;
  box-shadow: 0 18px 44px rgba(60, 72, 84, 0.12);
  overflow: hidden;
}
.pcard-bar { display: flex; align-items: center; gap: 12px; padding: 12px 15px; border-bottom: 1px solid var(--line); background: #f2f4ef; }
.pcard-dots { display: flex; gap: 6px; }
.pcard-dots i { width: 10px; height: 10px; border-radius: 50%; background: #cbd3ca; }
.pcard-url { font-size: 0.72rem; color: var(--muted); background: var(--white); border: 1px solid var(--line); padding: 4px 11px; border-radius: 7px; flex: 1; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.pcard-body { padding: 18px; }
.pwidget { border: 1px solid rgba(144, 168, 144, 0.4); border-radius: 14px; background: var(--sage-tint-2); padding: 16px; }
.pwidget-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.02em; color: var(--sage-deep); background: var(--sage-tint); border: 1px solid rgba(144, 168, 144, 0.4); border-radius: 100px; padding: 4px 10px; margin-bottom: 13px; }
.pwidget-head { font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--slate); margin-bottom: 2px; }
.pwidget-sub { color: var(--muted); font-size: 0.8rem; margin-bottom: 15px; }
.pwidget-row { display: flex; align-items: center; gap: 9px; }
.pchip { flex: 1; background: var(--white); border: 1px solid var(--line); border-radius: 11px; padding: 13px 8px; text-align: center; }
.pchip .sw { width: 34px; height: 34px; border-radius: 9px; margin: 0 auto 9px; background: linear-gradient(135deg, #a9c1a9, #86a486); }
.pchip small { color: var(--muted); font-size: 0.7rem; display: block; }
.pchip b { font-size: 0.77rem; font-weight: 700; color: var(--slate); display: block; margin-bottom: 3px; }
.pplus { color: var(--sage); font-size: 1.3rem; font-weight: 300; flex: none; }
.pwidget-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 15px; }
.pwidget-total { font-size: 0.82rem; color: var(--muted); }
.pwidget-total b { color: var(--slate); font-size: 1rem; }
.pwidget-btn { background: var(--slate); color: #f3f6f2; font-weight: 700; font-size: 0.78rem; padding: 9px 17px; border-radius: 9px; }

/* Upcoming product placeholder */
.product.soon { grid-template-columns: 1fr; text-align: center; padding: 60px 44px; background: linear-gradient(180deg, #fbfcfa, var(--card)); }
.product.soon .soon-visual {
  width: 62px; height: 62px; margin: 0 auto 26px;
  display: grid; place-items: center;
  border-radius: 16px; border: 1.5px dashed rgba(144, 168, 144, 0.55);
  background: var(--sage-tint-2); color: var(--sage-deep);
}
.product.soon .soon-visual svg { width: 26px; height: 26px; }
.product.soon h3 { color: var(--slate); }

/* ---------- Approach / principles ---------- */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.principle {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.principle:hover { border-color: rgba(144, 168, 144, 0.5); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(60, 72, 84, 0.07); }
.principle .ic {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--sage-tint); border: 1px solid rgba(144, 168, 144, 0.35);
  color: var(--sage-deep); margin-bottom: 20px;
}
.principle .ic svg { width: 22px; height: 22px; }
.principle h3 { margin-bottom: 9px; color: var(--slate); }
.principle p { color: var(--muted); font-size: 0.98rem; }

/* ---------- About / studio ---------- */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 66px; align-items: center; }
.about-copy p { color: var(--text); font-size: 1.1rem; margin-bottom: 20px; }
.about-copy p strong { color: var(--slate); font-weight: 700; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
}
.stat .k { font-family: var(--display); font-size: 2.5rem; font-weight: 500; letter-spacing: -0.01em; color: var(--slate); line-height: 1; }
.stat .k .accent { color: var(--sage-deep); }
.stat .v { color: var(--muted); font-size: 0.95rem; margin-top: 10px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(144, 168, 144, 0.4);
  background:
    radial-gradient(680px 340px at 50% 0%, rgba(144, 168, 144, 0.22), transparent 70%),
    var(--white);
  padding: 82px 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(60, 72, 84, 0.07);
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: var(--muted); font-size: 1.18rem; margin-bottom: 36px; max-width: 48ch; margin-inline: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 66px 0 42px; margin-top: 44px; background: rgba(255, 255, 255, 0.4); }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 50px; }
.footer-brand { max-width: 330px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 0.96rem; }
.footer-cols { display: flex; gap: 66px; flex-wrap: wrap; }
.footer-col h4 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--muted-2); margin-bottom: 16px; font-weight: 700; }
.footer-col a, .footer-col span { display: block; color: var(--muted); font-size: 0.95rem; margin-bottom: 11px; transition: color 0.15s; }
.footer-col a:hover { color: var(--sage-deep); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 0.86rem; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .product { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .about { grid-template-columns: 1fr; gap: 42px; }
  .principles { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 24px; gap: 20px;
  }
  .nav-toggle { display: inline-flex; align-items: center; background: none; border: 1px solid var(--line-strong); border-radius: 9px; padding: 9px 12px; color: var(--slate); cursor: pointer; font-size: 1.1rem; }
  .nav-cta .btn { display: none; }
  .section { padding: 74px 0; }
  .hero { padding: 74px 0 64px; }
  .hero-watermark { opacity: 0.045; }
}
@media (max-width: 560px) {
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-actions .btn { justify-content: center; }
  .about-stats { grid-template-columns: 1fr; }
  .pwidget-row { flex-direction: column; }
  .pplus { transform: rotate(90deg); }
}

/* ---------- Legal pages ---------- */
.legal { padding: 64px 0 80px; }
.legal .container { max-width: 800px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.legal .updated { color: var(--muted-2); font-size: 0.85rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.legal p, .legal li { color: var(--text); margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal strong { color: var(--slate); font-weight: 700; }
.legal a { color: var(--sage-deep); }
.legal .back { display: inline-block; margin-bottom: 28px; color: var(--muted); font-size: 0.85rem; }
.legal .back:hover { color: var(--sage-deep); }
