/* Weaver marketing site. Brand: Satoshi; Indigo, Violet, Teal, Coral, Stone, Cream. */
:root {
  --indigo: #0B1021;
  --violet: #6C5CE7;
  --violet-deep: #5646d6;
  --teal: #22BFA0;
  --coral: #FF7A59;
  --stone: #6B7280;
  --cream: #F7F6F2;
  --paper: #FFFFFF;
  --line: #E6E4DE;
  --ink: var(--indigo);
  --ink-soft: #3B4152;
  --radius: 14px;
  --wrap: 1120px;
  --font: "Satoshi", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.55;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0 0 .5em; line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.25rem); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; max-width: 60ch; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--ink-soft); max-width: 52ch; }
.big { font-size: clamp(1.15rem, 1.8vw, 1.5rem); max-width: 48ch; }
.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.narrow { max-width: 760px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--violet); color: #fff; padding: .5rem 1rem; z-index: 99; }
.skip:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; text-decoration: none;
  font-weight: 700; font-size: 1rem; padding: .85rem 1.4rem; border-radius: 999px;
  border: 2px solid transparent; transition: background .15s, border-color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--violet); color: #fff; }
.btn-primary:hover { background: var(--violet-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--indigo); }
.btn-light:hover { background: var(--cream); }
.btn-sm { padding: .55rem 1.05rem; font-size: .95rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

/* Header */
.top { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.top-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; font-weight: 900; font-size: 1.35rem; letter-spacing: -0.03em; }
.brand .mark { width: 34px; height: auto; }
.menu { display: flex; align-items: center; gap: 1.5rem; }
.primary { display: flex; gap: 1.25rem; }
.primary a { text-decoration: none; font-weight: 500; color: var(--ink-soft); padding: .25rem 0; border-bottom: 2px solid transparent; }
.primary a:hover, .primary a[aria-current="page"] { color: var(--ink); border-color: var(--violet); }
.lang { display: flex; gap: .15rem; }
.lang a { text-decoration: none; font-size: .8rem; font-weight: 700; padding: .3rem .5rem; border-radius: 6px; color: var(--stone); }
.lang a[aria-current="true"] { background: var(--cream); color: var(--ink); }
.lang a:hover { color: var(--ink); }
.menu-btn { display: none; font: inherit; font-weight: 700; background: none; border: 2px solid var(--line); border-radius: 999px; padding: .45rem 1rem; }
@media (max-width: 860px) {
  .menu-btn { display: inline-block; }
  .menu { display: none; position: absolute; left: 0; right: 0; top: 68px; background: #fff; border-bottom: 1px solid var(--line);
          flex-direction: column; align-items: flex-start; padding: 1.25rem; gap: 1.25rem; }
  .menu.open { display: flex; }
  .primary { flex-direction: column; gap: .5rem; }
}

/* Hero */
.hero { padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(2rem, 6vw, 4rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 3rem; align-items: center; }
.hero-sub { padding-bottom: clamp(1rem, 3vw, 2rem); }
.hero-sub h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } .hero-art { order: -1; } }

/* Threads illustration (the one moving element on the site) */
.threads { width: 100%; height: auto; overflow: visible; }
.thread { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: draw 1.6s cubic-bezier(.4,0,.2,1) forwards; }
.thread-1 { animation-delay: .1s } .thread-2 { animation-delay: .2s } .thread-3 { animation-delay: .3s }
.thread-4 { animation-delay: .4s } .thread-5 { animation-delay: .5s }
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .thread { animation: none; stroke-dashoffset: 0; } }
.thread-tag { display: inline-flex; align-items: center; gap: .4rem; background: #fff; border: 1.5px solid var(--line);
  border-radius: 999px; padding: .3rem .8rem .3rem .5rem; font: 500 .92rem/1 var(--font); color: var(--ink); white-space: nowrap; }
.thread-tag .ic { width: 18px; height: 18px; color: var(--c); }
.mark-lg { transform: translate(0, 0); }

/* Bands */
.band { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.band-dark { background: var(--indigo); color: #fff; }
.band-dark .lead, .band-dark .big { color: rgba(255,255,255,.82); }
.band-cream { background: var(--cream); }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* How it works: three steps on one thread */
.how { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; margin-top: 2rem; position: relative; }
.how::before { content: ""; position: absolute; left: 0; right: 0; top: 9px; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--teal), var(--coral)); opacity: .5; }
.how-step { position: relative; padding-top: 2rem; }
.how-dot { position: absolute; top: 0; left: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--c); box-shadow: 0 0 0 5px #fff; }
.how-step h3 { font-size: 1.35rem; }
.how-step p { color: var(--ink-soft); }
@media (max-width: 860px) { .how { grid-template-columns: 1fr; } .how::before { display: none; } }

/* Check lists */
.checks, .values { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; padding: .45rem 0; border-bottom: 1px solid var(--line); }
.checks li:last-child { border-bottom: 0; }
.checks .ic { flex: 0 0 22px; width: 22px; height: 22px; color: var(--teal); margin-top: .1rem; }
.checks-light li { border-color: rgba(255,255,255,.14); }
.values li { position: relative; padding: .35rem 0 .35rem 1.2rem; color: var(--ink-soft); }
.values li::before { content: ""; position: absolute; left: 0; top: .95rem; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.fit .checks { margin-top: 1rem; }

/* Timeline figure */
.tl { margin: 1.5rem 0 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; max-width: 520px;
  box-shadow: 0 24px 60px -30px rgba(11,16,33,.25); }
.tl-head { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: center; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); }
.tl-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--violet); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .9rem; }
.tl-head strong { display: block; }
.tl-head span { font-size: .85rem; color: var(--stone); }
.tl-strength { grid-column: 1 / -1; height: 6px; background: var(--cream); border-radius: 3px; overflow: hidden; }
.tl-strength i { display: block; height: 100%; width: var(--w); background: linear-gradient(90deg, var(--violet), var(--teal)); }
.tl-list { list-style: none; margin: 0; padding: .4rem 0; }
.tl-row { display: grid; grid-template-columns: 22px auto 1fr auto; gap: .7rem; align-items: center; padding: .6rem 1.2rem; font-size: .95rem; }
.tl-row + .tl-row { border-top: 1px solid var(--cream); }
.tl-row .ic { width: 20px; height: 20px; }
.tl-call .ic { color: var(--violet); } .tl-email .ic { color: var(--teal); } .tl-message .ic { color: var(--coral); }
.tl-meeting .ic { color: var(--indigo); } .tl-note .ic { color: var(--stone); }
.tl-label { font-weight: 700; }
.tl-text { color: var(--ink-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tl-row time { font-size: .8rem; color: var(--stone); }
.tl-next { padding: .9rem 1.2rem; background: var(--cream); border-top: 1px solid var(--line); }
.tl-next span { display: block; font-size: .8rem; color: var(--stone); margin-bottom: .2rem; }
.tl-next strong { display: flex; gap: .5rem; align-items: center; font-size: .95rem; }
.tl-next .ic { width: 18px; height: 18px; color: var(--violet); }
.tl figcaption { padding: .6rem 1.2rem; font-size: .8rem; color: var(--stone); border-top: 1px solid var(--line); }
@media (max-width: 480px) { .tl-row { grid-template-columns: 22px 1fr auto; } .tl-text { display: none; } }

/* Closing band */
.closing .btn { margin-top: .5rem; }
.cta-band .btn { margin-top: .5rem; }

/* Features */
.feat { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(1.5rem, 4vw, 4rem); padding: clamp(2rem, 4vw, 3.5rem) 0; border-top: 1px solid var(--line); }
.feat:first-child { border-top: 0; padding-top: 0; }
.feat-alt .feat-head { order: 2; }
.feat-head p { color: var(--ink-soft); }
.feat-ic { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--cream); color: var(--violet); margin-bottom: 1rem; }
.feat-ic .ic { width: 24px; height: 24px; }
.feat .checks { margin-bottom: 0; }
@media (max-width: 860px) { .feat { grid-template-columns: 1fr; } .feat-alt .feat-head { order: 0; } }

/* Tier tags */
.tier-tag { display: inline-block; font-size: .78rem; font-weight: 700; padding: .2rem .6rem; border-radius: 999px; margin: 0 0 .6rem .5rem; vertical-align: top; }
.tier-tag-business { background: var(--cream); color: var(--ink-soft); border: 1px solid var(--line); }
.tier-tag-pro { background: var(--indigo); color: #fff; }
.tier-tag-addon { background: #fff; color: var(--coral); border: 1px solid var(--coral); }
.feat-head .feat-ic { vertical-align: top; }

/* Pricing */
.tiers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; align-items: stretch; }
.tier { border-radius: 22px; padding: clamp(1.5rem, 3vw, 2.5rem); display: flex; flex-direction: column; }
.tier header p { color: var(--ink-soft); }
.tier h3 { margin-top: 1.25rem; font-size: .95rem; color: var(--stone); font-weight: 700; }
.tier .btn { margin-top: auto; align-self: flex-start; }
.tier-business { background: var(--cream); border: 1px solid var(--line); }
.split .values + h2 { margin-top: 2rem; }
.tier-pro { background: var(--indigo); color: #fff; }
.tier-pro header p, .tier-pro .values li { color: rgba(255,255,255,.8); }
.tier-pro h3 { color: rgba(255,255,255,.6); }
.tier-pro .checks li { border-color: rgba(255,255,255,.14); }
.tier-pro .checks .ic { color: var(--teal); }
@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; } }
.faq { margin: 0; }
.faq div { padding: 1rem 0; border-top: 1px solid var(--line); }
.faq div:first-child { border-top: 0; padding-top: 0; }
.faq dt { font-weight: 700; margin-bottom: .3rem; }
.faq dd { margin: 0; color: var(--ink-soft); }

/* Contact */
.contact-card { background: var(--cream); border: 1px solid var(--line); border-radius: 22px; padding: clamp(1.5rem, 3vw, 2.5rem); }
.contact-card p { color: var(--ink-soft); }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; margin: 1.5rem 0; }
.contact-or { font-size: .95rem; }
.contact-or a { font-weight: 700; }
.contact-details p { color: var(--ink-soft); }

/* Footer */
.foot { background: var(--cream); border-top: 1px solid var(--line); padding: 3rem 0 1.5rem; margin-top: 0; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.foot-brand p { color: var(--ink-soft); max-width: 40ch; margin-top: 1rem; }
.foot h2 { font-size: .9rem; color: var(--stone); margin-bottom: .75rem; }
.foot-grid a:not(.brand) { display: block; text-decoration: none; color: var(--ink); padding: .2rem 0; }
.foot-grid a:not(.brand):hover { color: var(--violet); }
.foot-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); font-size: .85rem; color: var(--stone); }
@media (max-width: 700px) { .foot-grid { grid-template-columns: 1fr; } }
