/* ============================================================
   Lynkmanage — Design System  (Teamora-style, green brand)
   Layout ref: Teamora  ·  Content: invoicing (Invoiless-adapted)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Greens */
  --forest:    #10281a;   /* dark hero / integrations */
  --forest-2:  #0a1c12;   /* darkest — stats band, footer */
  --forest-3:  #17362444; /* subtle */
  --green:     #1f7a44;   /* primary buttons / accent */
  --green-600: #15803d;
  --green-700: #166534;
  --green-bright: #24994f; /* button hover */
  --lime:      #bef264;   /* highlight / chart accent */
  --lime-soft: #d6f79a;
  --lime-dim:  #eaf7cd;
  --mint:      #e8f3ea;   /* pill bg on light */

  /* Neutrals */
  --white:     #ffffff;
  --paper:     #f5f8f4;   /* light section bg */
  --paper-2:   #eef3ec;
  --ink:       #0f2018;   /* headings / near-black */
  --ink-soft:  #48584f;   /* body text */
  --muted:     #6d7d72;
  --line:      #e6ede5;
  --line-2:    #dbe4d9;

  /* On-dark */
  --on-dark:      rgba(255,255,255,.92);
  --on-dark-soft: rgba(255,255,255,.62);
  --on-dark-line: rgba(255,255,255,.12);

  --font: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --r-sm: 10px; --r-md: 16px; --r-lg: 22px; --r-xl: 30px; --r-pill: 999px;

  --shadow-xs: 0 1px 3px rgba(16,40,26,.06);
  --shadow-sm: 0 4px 14px rgba(16,40,26,.06);
  --shadow-md: 0 14px 40px rgba(16,40,26,.10);
  --shadow-lg: 0 30px 70px rgba(16,40,26,.16);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 52px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); background: var(--white); color: var(--ink-soft);
  line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4 { color: var(--ink); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.2rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.04; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.06rem; }
p { color: var(--ink-soft); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 110px); position: relative; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.4rem,5vw,3.6rem); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head p { margin-top: .9rem; font-size: 1.08rem; color: var(--muted); }
.eyebrow-lead { color: var(--muted); }

/* pill eyebrow */
.pill {
  display: inline-flex; align-items: center; gap: .5em; padding: .42em .95em;
  background: var(--mint); color: var(--green-600); border-radius: var(--r-pill);
  font-size: .8rem; font-weight: 700; letter-spacing: .01em; margin-bottom: 1.1rem;
}
.pill::before { content: "✦"; font-size: .85em; }
.pill.on-dark { background: rgba(190,242,100,.14); color: var(--lime); }

.accent { color: var(--green-600); }
.accent-l { color: var(--lime); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 600; font-size: .98rem; padding: .82em 1.5em; border-radius: var(--r-pill);
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s; white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(31,122,68,.24); }
.btn-primary:hover { background: var(--green-bright); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(31,122,68,.32); }
.btn-dark { background: var(--forest); color: #fff; }
.btn-dark:hover { background: #163823; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-600); }
.btn-ghost.on-dark { color: #fff; border-color: var(--on-dark-line); }
.btn-ghost.on-dark:hover { border-color: var(--lime); color: var(--lime); }
.btn-lg { padding: .95em 1.8em; font-size: 1.05rem; }
.btn-sm { padding: .6em 1.1em; font-size: .9rem; }

.tlink { display: inline-flex; align-items: center; gap: .4em; font-weight: 600; color: var(--green-600); }
.tlink svg { width: 1em; height: 1em; transition: transform .2s; }
.tlink:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; transition: background .3s, box-shadow .3s, border-color .3s; border-bottom: 1px solid transparent; }
.nav { display: flex; align-items: center; gap: 1.6rem; height: 74px; }
.brand { display: flex; align-items: center; gap: .55em; font-weight: 800; font-size: 1.28rem; letter-spacing: -.02em; color: var(--ink); }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: .2rem; margin-left: auto; }
.nav-links a { font-weight: 500; font-size: .96rem; color: var(--ink-soft); padding: .5em .85em; border-radius: var(--r-pill); transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green-600); }
.nav-cta { display: flex; align-items: center; gap: .55rem; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; align-items: center; justify-content: center; color: var(--ink); }
.nav-toggle svg { width: 25px; height: 25px; }

/* light header solidifies on scroll */
.site-header.scrolled { background: rgba(255,255,255,.86); backdrop-filter: saturate(160%) blur(14px); border-color: var(--line); }

/* on-dark header (sits on the green hero — solid forest so white logo/links are visible) */
.site-header.on-dark { background: var(--forest); }
.site-header.on-dark .brand { color: #fff; }
.site-header.on-dark .brand img { filter: brightness(0) invert(1); }
.site-header.on-dark .nav-links a { color: rgba(255,255,255,.82); }
.site-header.on-dark .nav-links a:hover, .site-header.on-dark .nav-links a.active { color: var(--lime); }
.site-header.on-dark .btn-ghost { color: #fff; border-color: var(--on-dark-line); }
.site-header.on-dark .nav-toggle { color: #fff; }
.site-header.on-dark.scrolled { background: rgba(16,40,26,.85); backdrop-filter: saturate(160%) blur(14px); border-color: var(--on-dark-line); }

@media (max-width: 920px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: .15rem;
    position: absolute; top: 74px; left: var(--gutter); right: var(--gutter);
    background: #fff; padding: .9rem; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  }
  .nav-links.open a { color: var(--ink-soft); padding: .8em 1em; }
}

/* ============================================================
   MOCK-UI PRIMITIVES (self-contained dashboards/charts)
   ============================================================ */
.ui-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: 1.1rem; }
.ui-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .9rem; }
.ui-title { font-weight: 700; font-size: .95rem; color: var(--ink); }
.ui-sub { font-size: .78rem; color: var(--muted); }
.ui-badge { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: .28em .6em; border-radius: var(--r-pill); }
.ui-badge.paid { background: var(--lime-dim); color: var(--green-700); }
.ui-badge.pending { background: #fdf3e2; color: #b5791f; }
.ui-badge.sent { background: #e7f0f9; color: #2b6ca8; }

/* bar chart */
.bars { display: flex; align-items: flex-end; gap: .5rem; height: 92px; }
.bars .bar { flex: 1; background: var(--paper-2); border-radius: 6px 6px 3px 3px; position: relative; }
.bars .bar > span { position: absolute; inset: auto 0 0 0; background: var(--green); border-radius: 6px 6px 3px 3px; }
.bars .bar.hi > span { background: var(--lime); }

/* gauge (semicircle) */
.gauge { position: relative; width: 168px; margin: 0 auto; }
.gauge svg { width: 100%; display: block; }
.gauge .val { position: absolute; left: 0; right: 0; bottom: 4px; text-align: center; }
.gauge .val b { display: block; font-size: 1.9rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.gauge .val span { font-size: .74rem; color: var(--muted); }

/* mini table / rows */
.ui-rows { display: grid; gap: .55rem; }
.ui-row { display: flex; align-items: center; gap: .7rem; padding: .55rem .65rem; border-radius: 10px; background: var(--paper); font-size: .84rem; }
.ui-row .dot { width: 26px; height: 26px; border-radius: 8px; flex: none; display: grid; place-items: center; background: var(--mint); color: var(--green-600); font-weight: 700; font-size: .72rem; }
.ui-row .grow { flex: 1; color: var(--ink); font-weight: 600; }
.ui-row .amt { font-weight: 700; color: var(--ink); }

/* avatar */
.av { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.av-sm { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }

/* ============================================================
   HERO (dark green)
   ============================================================ */
.hero-dark { background: var(--forest); color: #fff; position: relative; overflow: hidden; }
.hero-dark::after { content:""; position:absolute; inset:0; background: radial-gradient(60% 60% at 80% 0%, rgba(190,242,100,.10), transparent 70%); pointer-events:none; }
.hero-dark .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px,5vw,60px); align-items: center; padding-block: clamp(48px,7vw,90px); }
.hero-copy .pill { margin-bottom: 1.4rem; }
.hero-copy h1 { color: #fff; margin-bottom: 1.3rem; }
.hero-copy h1 .accent-l { color: var(--lime); }
.hero-copy .sub { color: var(--on-dark-soft); font-size: 1.14rem; max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-note { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.6rem; color: var(--on-dark-soft); font-size: .88rem; }
.hero-note span { display: inline-flex; align-items: center; gap: .4em; }
.hero-note svg { width: 16px; height: 16px; color: var(--lime); }

/* hero dashboard cluster */
.hero-dash { position: relative; }
.hero-dash .ui-card { box-shadow: var(--shadow-lg); }
.hero-dash .card-main { position: relative; z-index: 2; }
.hero-dash .card-float { position: absolute; z-index: 3; width: 230px; right: -6%; bottom: -8%; }
.hero-dash .card-float2 { position: absolute; z-index: 3; width: 210px; left: -8%; top: -6%; }
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-dash { margin-top: 1rem; max-width: 460px; }
  .hero-dash .card-float { right: 0; } .hero-dash .card-float2 { left: 0; }
}

/* ============================================================
   LOGO GRID
   ============================================================ */
.logos { padding-block: clamp(40px,5vw,64px); }
.logos .lead { text-align: center; color: var(--muted); font-size: .82rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 2rem; }
.logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.logo-cell { display: flex; align-items: center; justify-content: center; gap: .5em; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1rem; font-weight: 700; color: var(--muted); font-size: .95rem; transition: color .2s, border-color .2s, background .2s; }
.logo-cell svg { width: 20px; height: 20px; color: var(--green-600); }
.logo-cell:hover { color: var(--ink); border-color: var(--line-2); background: #fff; }
@media (max-width: 820px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .logo-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   SHOWCASE ("Everything you need")
   ============================================================ */
.showcase-grid { display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 1.4rem; align-items: stretch; }
.showcase-feat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; display: flex; flex-direction: column; }
.showcase-feat h3 { margin-bottom: .5rem; }
.showcase-feat p { font-size: .95rem; }
.showcase-feat .bigstat { margin-top: auto; padding-top: 1.4rem; }
.showcase-feat .bigstat b { font-size: 3rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1; display: block; }
.showcase-feat .bigstat span { color: var(--muted); font-size: .9rem; }
.showcase-center { background: var(--forest); border-radius: var(--r-lg); padding: 1.6rem; display: grid; place-items: center; position: relative; overflow: hidden; }
.showcase-center .ui-card { width: 100%; }
.showcase-quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.showcase-quote .logo-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--forest); color: var(--lime); display: grid; place-items: center; font-weight: 800; margin-bottom: 1rem; }
.showcase-quote p { color: var(--ink); font-size: 1rem; }
.showcase-quote .who { display: flex; align-items: center; gap: .6rem; margin-top: auto; padding-top: 1.2rem; }
.showcase-quote .who .nm { font-weight: 700; font-size: .9rem; color: var(--ink); }
.showcase-quote .who .rl { font-size: .78rem; color: var(--muted); }
@media (max-width: 900px) { .showcase-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROBLEM & SOLUTION
   ============================================================ */
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.ps-card { border-radius: var(--r-lg); padding: clamp(1.6rem,3vw,2.4rem); border: 1px solid var(--line); }
.ps-card.problem { background: var(--paper); }
.ps-card.solution { background: var(--forest); color: #fff; border-color: transparent; }
.ps-card.solution h3, .ps-card.solution .pill { color: #fff; }
.ps-card.solution p { color: var(--on-dark-soft); }
.ps-card h3 { font-size: clamp(1.5rem,2.6vw,2rem); margin-bottom: 1rem; }
.ps-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.ps-tags span { font-size: .82rem; font-weight: 600; padding: .45em .9em; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line); color: var(--ink-soft); }
.ps-card.solution .ui-card { margin-top: 1.4rem; color: var(--ink-soft); }
@media (max-width: 820px) { .ps-grid { grid-template-columns: 1fr; } }
/* before/after lists */
.ps-list { display: grid; gap: .72rem; margin-top: 1.3rem; }
.ps-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1rem; line-height: 1.45; }
.ps-list li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background-size: 12px; background-repeat: no-repeat; background-position: center; }
.ps-list.bad li { color: var(--ink-soft); }
.ps-list.bad li::before { background-color: #fdecea; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c0553f' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E"); }
.ps-list.good li { color: rgba(255,255,255,.92); }
.ps-list.good li::before { background-color: var(--lime); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1c12' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }

/* ============================================================
   BENTO FEATURE GRID
   ============================================================ */
.bento { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: 1fr; gap: 1.3rem; }
.bcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-xs); transition: transform .25s, box-shadow .25s; }
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bcard .b-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--mint); color: var(--green-600); display: grid; place-items: center; margin-bottom: 1rem; }
.bcard .b-ic svg { width: 24px; height: 24px; }
.bcard h4 { font-size: 1.14rem; margin-bottom: .4rem; }
.bcard p { font-size: .93rem; }
.bcard.tall { grid-row: span 2; display: flex; flex-direction: column; }
.bcard.tall .gauge { margin: .5rem auto 1.2rem; }
.bcard.wide { grid-column: span 1; }
.bcard.feature-lead { background: var(--forest); color: #fff; }
.bcard.feature-lead h4, .bcard.feature-lead p { color: #fff; }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } .bcard.tall { grid-row: auto; } }
@media (max-width: 600px) { .bento { grid-template-columns: 1fr; } }

/* ============================================================
   SETUP STEPS
   ============================================================ */
.setup-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.sstep { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-xs); }
.sstep .step-tag { display: inline-flex; align-items:center; gap:.4em; font-size:.78rem; font-weight:700; color: var(--green-600); background: var(--mint); padding:.3em .7em; border-radius: var(--r-pill); margin-bottom: 1rem; }
.sstep h4 { font-size: 1.16rem; margin-bottom: .35rem; }
.sstep p { font-size: .92rem; margin-bottom: 1.2rem; }
.sstep .ui-card { background: var(--paper); box-shadow: none; }
@media (max-width: 820px) { .setup-steps { grid-template-columns: 1fr; } }

/* ============================================================
   INTEGRATIONS (dark)
   ============================================================ */
.integrations { background: var(--forest); color: #fff; text-align: center; }
.integrations h2 { color: #fff; }
.integrations .section-head p { color: var(--on-dark-soft); }
.int-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1rem; }
.int-icon { width: 62px; height: 62px; border-radius: 16px; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); transition: transform .25s; }
.int-icon:hover { transform: translateY(-5px); }
.int-icon svg { width: 30px; height: 30px; }
.int-lead { color: var(--on-dark-soft); font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin: 2.4rem 0 .4rem; }

/* ============================================================
   QUOTES / TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-xs); display: flex; flex-direction: column; }
.quote .stars { color: #efb034; letter-spacing: 2px; margin-bottom: .8rem; }
.quote p { color: var(--ink); font-size: .98rem; }
.quote .who { display: flex; align-items: center; gap: .7rem; margin-top: auto; padding-top: 1.3rem; }
.quote .who .nm { font-weight: 700; font-size: .9rem; color: var(--ink); }
.quote .who .rl { font-size: .78rem; color: var(--muted); }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(24px,4vw,56px); align-items: start; }
.faq-list { display: grid; gap: .8rem; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; padding: .2rem 1.3rem; transition: box-shadow .2s, border-color .2s; }
.faq-list details[open] { box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.faq-list summary { list-style: none; cursor: pointer; padding: 1.05rem 0; font-weight: 700; color: var(--ink); font-size: 1.04rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list .pm { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--mint); color: var(--green-600); display: grid; place-items: center; font-size: 1.2rem; transition: transform .25s; }
.faq-list details[open] .pm { transform: rotate(45deg); }
.faq-list p { padding-bottom: 1.1rem; font-size: .96rem; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; } }

/* ============================================================
   STATS BAND (darkest)
   ============================================================ */
.stats-dark { background: var(--forest-2); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.stat-box { background: rgba(255,255,255,.04); border: 1px solid var(--on-dark-line); border-radius: var(--r-lg); padding: 2rem; }
.stat-box b { font-size: clamp(2.6rem,5vw,3.6rem); font-weight: 800; color: var(--lime); letter-spacing: -.03em; line-height: 1; display: block; }
.stat-box .t { color: #fff; font-weight: 700; margin-top: .6rem; }
.stat-box .d { color: var(--on-dark-soft); font-size: .9rem; margin-top: .25rem; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA (dark)
   ============================================================ */
/* CTA lives on a LIGHT section with a vivid green card, so it reads clearly separate from the dark footer below */
.cta-dark { background: var(--paper); color: var(--ink); text-align: center; }
.cta-inner { background: linear-gradient(140deg, #0e2419 0%, #164027 52%, #1f7a44 132%); border-radius: var(--r-xl); padding: clamp(48px,6vw,92px); position: relative; overflow: hidden; box-shadow: 0 34px 74px rgba(16,40,26,.30); }
.cta-inner::after { content:""; position:absolute; inset:0; background: radial-gradient(62% 92% at 50% -12%, rgba(190,242,100,.22), transparent 64%); pointer-events:none; }
.cta-inner > * { position: relative; z-index: 2; }
.cta-inner h2 { color: #fff; max-width: 18ch; margin: 0 auto 1rem; }
.cta-inner p { color: rgba(255,255,255,.82); max-width: 48ch; margin: 0 auto 1.9rem; }
.cta-inner .btn-primary { background: var(--lime); color: var(--forest-2); box-shadow: 0 12px 30px rgba(190,242,100,.32); }
.cta-inner .btn-primary:hover { background: var(--lime-soft); }
.cta-row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* Footer gets a defined top edge + a little more air, so it reads as a distinct zone */
.site-footer { border-top: 1px solid rgba(255,255,255,.07); }

/* ============================================================
   FOOTER (dark)
   ============================================================ */
.site-footer { background: var(--forest-2); color: var(--on-dark-soft); padding-top: clamp(52px,7vw,84px); }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 2.4rem 1.4rem; padding-bottom: 2.6rem; border-bottom: 1px solid var(--on-dark-line); }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand img { filter: brightness(0) invert(1); }
.footer-brand p { color: var(--on-dark-soft); font-size: .94rem; max-width: 30ch; }
.footer-connect { margin-top: 1.3rem; }
.footer-connect .lbl { color: var(--on-dark-soft); font-size: .8rem; margin-bottom: .5rem; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s, color .2s; }
.footer-social a:hover { background: var(--lime); color: var(--forest-2); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.footer-col a { display: block; padding: .32rem 0; color: var(--on-dark-soft); font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding: 1.6rem 0; font-size: .87rem; color: rgba(255,255,255,.5); }
.footer-bottom .links { display: flex; gap: 1.3rem; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ============================================================
   PAGE HERO (inner, light)
   ============================================================ */
.page-hero { text-align: center; padding-block: clamp(52px,7vw,92px); background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 16ch; margin: 0 auto 1.1rem; }
.page-hero p { max-width: 52ch; margin: 0 auto; font-size: 1.12rem; color: var(--muted); }
.page-hero .hero-actions { justify-content: center; margin-top: 1.8rem; }

/* ============================================================
   FEATURES ROWS
   ============================================================ */
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,68px); align-items: center; padding-block: clamp(36px,5vw,64px); }
.feat-row + .feat-row { border-top: 1px solid var(--line); }
.feat-row.flip .fr-visual { order: 2; }
.feat-row .tag { display: inline-block; background: var(--mint); color: var(--green-600); font-weight: 700; font-size: .8rem; padding: .4em .9em; border-radius: var(--r-pill); margin-bottom: 1rem; }
.feat-row h2 { font-size: clamp(1.6rem,3vw,2.2rem); }
.feat-row .lead { margin-top: .8rem; color: var(--ink-soft); }
.fr-visual { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
@media (max-width: 780px) { .feat-row, .feat-row.flip { grid-template-columns: 1fr; } .feat-row.flip .fr-visual { order: 0; } }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2.2rem 1.9rem; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.pop { background: var(--forest); color: #fff; border-color: transparent; box-shadow: var(--shadow-lg); }
.price-card.pop h3, .price-card.pop .price { color: #fff; }
.price-card.pop p, .price-card.pop .per { color: var(--on-dark-soft); }
.price-card.pop .price-feat li { color: rgba(255,255,255,.88); }
.pop-tag { align-self: flex-start; background: var(--lime); color: var(--forest-2); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: .35em .8em; border-radius: var(--r-pill); margin-bottom: 1rem; }
.price-plan { font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.price-card.pop .price-plan { color: #fff; }
.price-card > p { font-size: .93rem; margin-top: .5rem; min-height: 3.2em; }
.price { font-size: 3rem; font-weight: 800; letter-spacing: -.03em; margin-top: 1.1rem; line-height: 1; color: var(--ink); }
.per { font-size: .92rem; color: var(--muted); margin-bottom: 1.4rem; }
.price-card .btn { width: 100%; }
.price-feat { margin-top: 1.5rem; display: grid; gap: .7rem; }
.price-feat li { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; color: var(--ink-soft); }
.price-feat .chk { flex: none; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%; background: var(--lime); color: var(--forest-2); display: grid; place-items: center; }
.price-feat .chk svg { width: 12px; height: 12px; }
.bill-toggle { display: inline-flex; align-items: center; gap: .6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: .35rem; margin-top: 1.6rem; }
.bill-toggle button { padding: .55em 1.15em; border-radius: var(--r-pill); font-weight: 600; font-size: .9rem; color: var(--muted); transition: all .2s; }
.bill-toggle button.active { background: var(--green); color: #fff; }
.bill-toggle button.active .save-tag { color: #fff; opacity: .9; }
.save-tag { color: var(--green-600); font-weight: 700; font-size: .78rem; }
.price-card.pop .save-tag { color: var(--lime); }
.price-grid.two-col { grid-template-columns: repeat(2,1fr); max-width: 840px; margin-inline: auto; }
@media (max-width: 860px) { .price-grid, .price-grid.two-col { grid-template-columns: 1fr; } }

/* comparison table */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch; }
.compare { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .95rem; }
.compare th, .compare td { padding: .9rem 1.25rem; border-bottom: 1px solid var(--line); text-align: center; vertical-align: middle; }
.compare thead th { border-bottom: 2px solid var(--line-2); vertical-align: top; padding: 1.5rem 1.25rem; }
.compare tbody td:first-child, .compare thead th:first-child { text-align: left; }
.compare tbody td:first-child { font-weight: 600; color: var(--ink); }
.compare col.col-pop { background: var(--paper); }
.compare .p-name { font-size: 1.2rem; font-weight: 800; color: var(--ink); display: block; }
.compare .p-price { font-size: .88rem; color: var(--muted); font-weight: 600; display: block; margin: .25rem 0 .8rem; }
.compare .p-price b { color: var(--green-600); font-size: 1rem; }
.compare .poptag { display: inline-block; background: var(--lime); color: var(--forest-2); font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: .2em .6em; border-radius: var(--r-pill); margin-bottom: .5rem; }
.compare .grp td { background: var(--mint); color: var(--green-700); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .74rem; text-align: left; padding-block: .6rem; }
.compare .tick, .compare .dash { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; }
.compare .tick { background: var(--lime-dim); color: var(--green-600); }
.compare .tick svg { width: 14px; height: 14px; }
.compare .dash { color: var(--muted); font-weight: 700; }
.compare .val { font-weight: 700; color: var(--ink); }
.compare .val.mut { font-weight: 600; color: var(--ink-soft); font-size: .9rem; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare .btn { width: 100%; }
.compare-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 1.2rem; }
.compare .soon { display: inline-block; background: var(--paper-2); color: var(--muted); font-size: .72rem; font-weight: 700; padding: .28em .7em; border-radius: var(--r-pill); white-space: nowrap; }
.per s, .price-was { color: var(--muted); font-weight: 600; margin-right: .3em; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-thumb { aspect-ratio: 16/10; display: grid; place-items: center; position: relative; }
.post-thumb .cat { position: absolute; top: 1rem; left: 1rem; background: #fff; color: var(--green-700); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: .38em .75em; border-radius: var(--r-pill); }
.post-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: .8rem; color: var(--muted); margin-bottom: .6rem; }
.post-card h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.post-card p { font-size: .93rem; flex: 1; }
.post-card .tlink { margin-top: 1rem; }
.feat-post { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; margin-bottom: 2.6rem; }
.feat-post .post-thumb { aspect-ratio: auto; min-height: 320px; }
.feat-post .post-body { padding: clamp(24px,3vw,42px); justify-content: center; }
.feat-post h2 { margin-bottom: 1rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } .feat-post { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* article */
.article { max-width: 740px; margin-inline: auto; }
.article > * { margin-bottom: 1.25rem; }
.article h2 { font-size: 1.8rem; margin-top: 2.2rem; }
.article p { font-size: 1.1rem; color: var(--ink-soft); }
.article ul.bul { display: grid; gap: .55rem; }
.article ul.bul li { display: flex; gap: .7rem; font-size: 1.06rem; color: var(--ink-soft); }
.article ul.bul li::before { content:""; flex:none; width: 22px; height: 22px; margin-top: 4px; border-radius: 50%; background: var(--lime-dim); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803d' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); background-size: 13px; background-repeat: no-repeat; background-position: center; }
.article blockquote { border-left: 4px solid var(--lime); padding: .3rem 0 .3rem 1.4rem; font-size: 1.35rem; font-weight: 700; color: var(--ink); }
.article-hero { text-align: center; max-width: 740px; margin: 0 auto clamp(28px,5vw,48px); }
.article-hero h1 { font-size: clamp(2rem,4.4vw,3.1rem); margin: 1rem 0; }
.article-hero .meta { color: var(--muted); font-weight: 500; }

/* ============================================================
   AUTH
   ============================================================ */
.auth { min-height: calc(100vh - 74px); display: grid; grid-template-columns: 1fr 1fr; }
.auth-aside { background: var(--forest); color: #fff; padding: clamp(36px,5vw,64px); display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.auth-aside::after { content:""; position:absolute; inset:0; background: radial-gradient(50% 50% at 90% 10%, rgba(190,242,100,.12), transparent 70%); }
.auth-aside > * { position: relative; z-index: 2; }
.auth-aside .brand { color: #fff; } .auth-aside .brand img { filter: brightness(0) invert(1); }
.auth-quote h2 { color: #fff; font-size: clamp(1.6rem,2.6vw,2.2rem); }
.auth-quote p { color: var(--on-dark-soft); margin-top: .9rem; }
.auth-list { display: grid; gap: .8rem; }
.auth-list li { display: flex; gap: .7rem; align-items: center; color: rgba(255,255,255,.9); }
.auth-list .chk { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--lime); color: var(--forest-2); display: grid; place-items: center; }
.auth-list .chk svg { width: 13px; height: 13px; }
.auth-main { display: grid; place-items: center; padding: clamp(30px,5vw,60px); }
.auth-form { width: 100%; max-width: 400px; }
.auth-form h1 { font-size: clamp(1.8rem,3.4vw,2.3rem); margin-bottom: .4rem; }
.auth-form > p { margin-bottom: 1.8rem; color: var(--muted); }
.auth-tabs { display: flex; gap: .3rem; background: var(--paper); border-radius: var(--r-pill); padding: .3rem; margin-bottom: 1.6rem; }
.auth-tabs button { flex: 1; padding: .65em; border-radius: var(--r-pill); font-weight: 600; color: var(--muted); transition: all .2s; }
.auth-tabs button.active { background: #fff; color: var(--green-600); box-shadow: var(--shadow-xs); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .4rem; color: var(--ink); }
.field input { width: 100%; padding: .85em 1.05em; border: 1.5px solid var(--line-2); border-radius: var(--r-md); font-family: inherit; font-size: 1rem; transition: border-color .2s, box-shadow .2s; }
.field input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(31,122,68,.12); }
.auth-form .btn { width: 100%; margin-top: .5rem; }
.auth-alt { text-align: center; margin-top: 1.3rem; font-size: .93rem; color: var(--muted); }
.auth-alt a { color: var(--green-600); font-weight: 600; }
.oauth { display: grid; gap: .6rem; margin: 1.3rem 0; }
.oauth button { display: flex; align-items: center; justify-content: center; gap: .6em; padding: .8em; border: 1.5px solid var(--line-2); border-radius: var(--r-md); font-weight: 600; background: #fff; transition: border-color .2s, transform .2s; }
.oauth button:hover { border-color: var(--green); transform: translateY(-2px); }
.divider { display: flex; align-items: center; gap: 1rem; color: var(--muted); font-size: .84rem; margin: 1.3rem 0; }
.divider::before, .divider::after { content:""; flex: 1; height: 1px; background: var(--line); }
@media (max-width: 840px) { .auth { grid-template-columns: 1fr; } .auth-aside { display: none; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,60px); align-items: start; }
.contact-info { display: grid; gap: 1rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.2rem; }
.contact-item .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--mint); color: var(--green-600); display: grid; place-items: center; }
a.contact-item { color: inherit; transition: border-color .2s, transform .2s, box-shadow .2s; }
a.contact-item:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-item h4 { margin-bottom: .2rem; }
.contact-item p { font-size: .94rem; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px,3vw,38px); box-shadow: var(--shadow-sm); }
.contact-form textarea { width: 100%; padding: .85em 1.05em; border: 1.5px solid var(--line-2); border-radius: var(--r-md); font-family: inherit; font-size: 1rem; resize: vertical; min-height: 130px; }
.contact-form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(31,122,68,.12); }

/* ============================================================
   Reveal + responsive
   ============================================================ */
.reveal { transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal { opacity: 0; transform: translateY(24px); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

@media (max-width: 1000px) { .showcase-grid, .bento { } .stats-grid { } }
@media (max-width: 600px) { body { font-size: 16px; } .setup-steps, .quotes { grid-template-columns: 1fr; } }
