/* Growly Inc. — site styles */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --green-900:#0e2e26;--green-800:#15463a;--green-700:#1c604e;
  --green-600:#237c64;--green-500:#2f9679;--green-400:#5aac92;
  --green-300:#93cdb8;--green-50:#eff8f4;
  --sand:#f4efe6;--ink:#12251f;--ink-muted:#3f5e54;--ink-faint:#7e9c92;
  --surface:#f8fbf9;--surface-raised:#ffffff;
  --border:rgba(35,124,100,.13);--border-strong:rgba(35,124,100,.24);
}

html{font-size:16px;scroll-behavior:smooth}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:var(--surface);color:var(--ink);line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

/* NAV */
.site-nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:1.1rem 2.5rem;
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;
  background:rgba(248,251,249,.93);backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
.logo{
  display:inline-flex;align-items:center;gap:.6rem;
  font-size:1rem;font-weight:600;letter-spacing:-.01em;
  color:var(--green-800);text-decoration:none;white-space:nowrap;
}
.logo svg{flex:none}
.nav-right{display:flex;align-items:center;gap:2rem}
.nav-right a{
  font-size:.875rem;font-weight:400;color:var(--ink-muted);
  text-decoration:none;transition:color .2s;cursor:pointer;white-space:nowrap;
}
.nav-right a:hover,.nav-right a:focus-visible{color:var(--ink)}

/* HERO */
.hero{
  min-height:92vh;display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  padding:8rem 2rem 5rem;text-align:center;
  position:relative;overflow:hidden;
}
.hero::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%,rgba(47,150,121,.11) 0%,transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 90%,rgba(244,239,230,.9) 0%,transparent 70%);
}
.hero>*{position:relative}
.hero-tag{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.72rem;font-weight:500;letter-spacing:.14em;text-transform:uppercase;
  color:var(--green-700);border:1px solid var(--border-strong);border-radius:100px;
  padding:.42rem 1rem;margin-bottom:1.75rem;background:rgba(255,255,255,.7);
}
.hero-tag::before{
  content:'';width:6px;height:6px;border-radius:50%;background:var(--green-500);
}
h1{
  font-size:clamp(2.3rem,5vw,3.6rem);font-weight:600;
  line-height:1.1;letter-spacing:-.035em;
  color:var(--ink);max-width:880px;margin-bottom:1.5rem;
}
h1 span{color:var(--green-700)}
.hero-sub{
  font-size:1.05rem;font-weight:300;color:var(--ink-muted);
  max-width:560px;line-height:1.8;
}

/* SECTIONS */
.section{
  padding:4.5rem 2rem;max-width:1080px;margin:0 auto;
  border-top:1px solid var(--border);
}
.section-label{
  font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--green-600);font-weight:500;margin-bottom:1rem;
}
h2{
  font-size:clamp(1.6rem,3vw,2.1rem);font-weight:600;
  line-height:1.15;letter-spacing:-.025em;
  color:var(--ink);margin-bottom:1rem;
}
.body-text p{
  font-size:.975rem;font-weight:300;color:var(--ink-muted);
  line-height:1.85;margin-bottom:1.1rem;max-width:62ch;
}
.body-text p:last-child{margin-bottom:0}

.about-inner{display:grid;grid-template-columns:1.15fr .85fr;gap:3.5rem}
.about-aside{
  background:var(--surface-raised);border:1px solid var(--border);
  border-radius:18px;padding:1.75rem;align-self:start;
  box-shadow:0 18px 44px rgba(14,46,38,.05);
}
.about-aside dt{
  font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--green-600);font-weight:500;margin-bottom:.35rem;
}
.about-aside dd{
  font-size:.925rem;font-weight:400;color:var(--ink);margin-bottom:1.35rem;line-height:1.6;
}
.about-aside dd:last-child{margin-bottom:0}
.about-aside a{color:var(--green-700);text-decoration:none}
.about-aside a:hover{text-decoration:underline}

/* CARDS */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:2.5rem}
.card{
  background:var(--surface-raised);border:1px solid var(--border);
  border-radius:18px;padding:1.75rem 1.6rem;
  transition:border-color .2s,transform .2s,box-shadow .2s;
}
.card:hover{border-color:var(--border-strong);transform:translateY(-2px);box-shadow:0 18px 40px rgba(14,46,38,.06)}
.card-icon{
  width:36px;height:36px;border-radius:10px;
  background:var(--green-50);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;margin-bottom:1.1rem;
}
.card h3{font-size:1rem;font-weight:600;letter-spacing:-.015em;color:var(--ink);margin-bottom:.55rem}
.card p{font-size:.9rem;font-weight:300;color:var(--ink-muted);line-height:1.75}

/* FOOTER */
footer{background:var(--green-900);color:var(--sand);padding:3.5rem 2.5rem 2rem}
.footer-inner{
  max-width:800px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;
  padding-bottom:2.5rem;border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-col-title{
  font-size:.72rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;
  color:var(--green-300);margin-bottom:1.25rem;
}
.footer-contact p{font-size:.875rem;font-weight:300;color:rgba(244,239,230,.65);line-height:1.9;margin:0}
.footer-contact strong{color:rgba(244,239,230,.92);font-weight:500}
.footer-contact a{color:var(--green-300);text-decoration:none;transition:color .2s}
.footer-contact a:hover{color:var(--sand)}
.footer-legal{display:flex;flex-direction:column;gap:.65rem}
.footer-legal a{
  font-size:.875rem;font-weight:300;color:rgba(244,239,230,.65);
  text-decoration:none;transition:color .2s;
}
.footer-legal a:hover{color:var(--sand)}
.footer-bottom{
  max-width:800px;margin:0 auto;padding-top:1.5rem;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;
}
.footer-logo{font-size:.925rem;font-weight:600;color:var(--sand);letter-spacing:-.01em}
.footer-copy{font-size:.75rem;color:rgba(244,239,230,.32);font-weight:300}

/* LEGAL PAGES */
.legal-body{max-width:720px;margin:0 auto;padding:8rem 2.5rem 5rem}
.legal-body .eyebrow{
  font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--green-600);font-weight:500;margin-bottom:.85rem;
}
.legal-body h1{font-size:clamp(1.9rem,4vw,2.4rem);margin-bottom:.5rem;max-width:none;animation:none}
.legal-body .date{font-size:.82rem;color:var(--ink-faint);margin-bottom:2.5rem;font-weight:300}
.legal-notice{
  background:var(--green-50);border:1px solid var(--border);border-radius:14px;
  padding:1.1rem 1.25rem;margin-bottom:2.5rem;
  font-size:.82rem;font-weight:500;letter-spacing:.02em;color:var(--green-800);line-height:1.7;
}
.legal-toc{
  border:1px solid var(--border);border-radius:14px;
  background:var(--surface-raised);padding:1.4rem 1.5rem;margin-bottom:3rem;
}
.legal-toc-title{
  font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--ink-faint);font-weight:500;margin-bottom:.9rem;
}
.legal-toc ol{list-style:none;counter-reset:toc;display:grid;gap:.5rem}
.legal-toc li{counter-increment:toc;font-size:.875rem;line-height:1.5}
.legal-toc li::before{
  content:counter(toc) '.';color:var(--ink-faint);font-variant-numeric:tabular-nums;
  margin-right:.5rem;font-weight:400;
}
.legal-toc a{color:var(--ink-muted);text-decoration:none;font-weight:400}
.legal-toc a:hover{color:var(--green-700)}
.legal-body h2{
  font-size:1.1rem;font-weight:600;margin:2.5rem 0 .7rem;
  color:var(--ink);letter-spacing:-.01em;line-height:1.4;scroll-margin-top:6rem;
}
.legal-body p{font-size:.925rem;color:var(--ink-muted);font-weight:300;line-height:1.85;margin-bottom:1rem}
.legal-body strong{font-weight:500;color:var(--ink)}
.legal-body ul{margin:0 0 1.25rem 1.25rem}
.legal-body ul li{
  font-size:.925rem;color:var(--ink-muted);font-weight:300;
  line-height:1.85;margin-bottom:.45rem;padding-left:.25rem;
}
.legal-body ul li::marker{color:var(--green-400)}
.legal-body p a,.legal-body li a{color:var(--green-700);text-decoration:underline;text-decoration-color:var(--border-strong);text-underline-offset:2px}
.legal-body p a:hover,.legal-body li a:hover{text-decoration-color:var(--green-700)}
.legal-body .legal-toc a{text-decoration:none}

@keyframes fadeUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}
.hero h1{animation:fadeUp .5s ease .1s both}
.hero-sub{animation:fadeUp .5s ease .2s both}
.hero-tag{animation:fadeUp .5s ease both}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto}
}

@media(max-width:860px){
  .cards{grid-template-columns:1fr}
  .about-inner{grid-template-columns:1fr;gap:2.5rem}
}
@media(max-width:640px){
  .site-nav{padding:.85rem 1.1rem;gap:.6rem}
  .logo{font-size:.78rem;gap:.45rem}
  .logo svg{width:18px;height:18px}
  .nav-right{gap:.85rem}
  .nav-right a{font-size:.75rem}
  .hero{padding:7rem 1.5rem 4rem;min-height:80vh}
  .section{padding:3.5rem 1.5rem}
  .legal-body{padding:7rem 1.5rem 4rem}
  .footer-inner{grid-template-columns:1fr}
  footer{padding:3rem 1.5rem 2rem}
  .footer-bottom{flex-direction:column;align-items:flex-start}
}

.logo .logo-short{display:none}
@media(max-width:420px){
  .logo .logo-short{display:inline}
  .logo .logo-full{display:none}
}
