/* ============================================================
   Jam Today v2 — styles-v2.css
   Light theme. Plus Jakarta Sans display, Inter body.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #EA3957;
  --red-dark:   #C42E45;
  --red-soft:   #FFF0F2;
  --red-mid:    #FDDDE3;
  --ink:        #1A1A2E;
  --body:       #3D3D52;
  --muted:      #7B7B95;
  --border:     #E8E8F0;
  --border-mid: #D8D8E8;
  --bg:         #FFFFFF;
  --bg-soft:    #F8F8FC;
  --bg-warm:    #F5F3EE;
  --bg-dark:    #1A1A2E;
  --bg-darker:  #0F0F1E;
  --shadow-sm:  0 1px 4px rgba(26,26,46,0.06);
  --shadow:     0 2px 16px rgba(26,26,46,0.08);
  --shadow-lg:  0 8px 40px rgba(26,26,46,0.12);
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--ink); overflow-x: hidden; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--red); color: #fff;
  padding: 8px 16px; z-index: 999;
  border-radius: 0 0 8px 0;
  transition: top .2s;
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center;
  justify-content: space-between; height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 800; color: var(--ink); letter-spacing: -0.02em;
}
.brand__mark { width: 30px; height: 30px; }
.brand__jam { color: var(--red); }
.brand__strap { display: none; }
.nav__menu {
  display: flex; align-items: center; gap: 1.75rem;
}
.nav__link {
  font-size: 0.875rem; font-weight: 500;
  color: var(--body); transition: color .2s;
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__link.is-active { font-weight: 600; }
.btn--nav {
  background: var(--red); color: #fff !important;
  padding: 0.55rem 1.2rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn--nav:hover { background: var(--red-dark); transform: translateY(-1px); }

/* Mobile nav toggle */
.nav__toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; color: var(--ink);
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .2s;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  padding: 0.85rem 1.75rem; border-radius: 10px;
  border: none; cursor: pointer; transition: all .2s;
  text-decoration: none;
}
.btn--primary {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 16px rgba(234,57,87,0.3);
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--secondary {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--secondary:hover { border-color: var(--ink); }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn__icon { display: inline; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 64px 0 48px; background: var(--bg); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 16px; line-height: 1.1;
}
.page-hero__subtitle {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--body); max-width: 580px; margin-bottom: 40px;
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 40px; line-height: 1.15;
}

/* ── CARDS ── */
.card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--red-soft); display: grid;
  place-items: center; color: var(--red); margin-bottom: 16px;
}
.card__icon svg { width: 24px; height: 24px; }
.card__title {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; color: var(--ink); margin-bottom: 8px;
}
.card__text { font-size: 0.875rem; line-height: 1.65; color: var(--body); }

/* ── FEATURE GRID (homepage) ── */
.feature-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}

/* ── INLINE LINK ── */
.inline-link { color: var(--red); font-weight: 600; }
.inline-link:hover { text-decoration: underline; }

/* ── MUTED ── */
.muted { color: var(--muted); }
.small { font-size: 0.82rem; }

/* ── FORM FIELDS ── */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field__label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.input {
  width: 100%; padding: 12px 14px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 10px; font-family: var(--font-body);
  font-size: 0.95rem; color: var(--ink);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(234,57,87,0.1);
}
textarea.input { resize: vertical; min-height: 120px; }

/* ── CALLOUT ── */
.callout {
  background: var(--red-soft); border: 1px solid var(--red-mid);
  border-radius: var(--radius); padding: 20px;
  margin-top: 20px;
}
.callout__title { font-size: 0.85rem; font-weight: 700; color: var(--red); margin-bottom: 10px; }
.bullets { list-style: none; padding: 0; }
.bullets li {
  font-size: 0.875rem; color: var(--body); padding: 4px 0;
  padding-left: 18px; position: relative;
}
.bullets li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--red); font-weight: 700; font-size: 0.8rem;
}

/* ── GRID HELPERS ── */
.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}

/* ── STRIP ── */
.strip { padding: 20px 0; background: var(--red-soft); border-top: 1px solid var(--red-mid); border-bottom: 1px solid var(--red-mid); }
.strip__inner { display: flex; align-items: center; justify-content: center; gap: 12px; }
.strip__text { font-size: 0.9rem; color: var(--body); }
.strip__link { color: var(--red); font-weight: 700; }
.strip__link:hover { text-decoration: underline; }

/* ── CLIENT GRID (clients page) ── */
.client-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  margin-top: 40px; margin-bottom: 24px;
}
.logo-wall {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin-top: 40px; margin-bottom: 24px;
}
.logo-tile {
  position: relative; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 2/1;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s;
}
.logo-tile:hover { border-color: rgba(234,57,87,0.35); }
.logo-tile__img {
  display: flex; align-items: center; justify-content: center;
  padding: 20px; width: 100%; height: 100%;
  transition: opacity .25s;
}
.logo-tile__img img { max-height: 44px; max-width: 80%; object-fit: contain; }
.logo-tile__overlay {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.96);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px; opacity: 0; transition: opacity .25s; padding: 16px;
}
.logo-tile:hover .logo-tile__overlay { opacity: 1; }
.logo-tile:hover .logo-tile__img { opacity: 0.1; }
.logo-tile__name { font-size: 13px; font-weight: 700; color: var(--ink); }
.logo-tile__sector { font-size: 11px; color: var(--muted); }
.clients-note { margin-top: 16px; }

/* ── POST GRID (blog) ── */
.post-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 40px;
}
.post-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.post-card:hover {
  box-shadow: var(--shadow); transform: translateY(-2px);
  border-color: var(--red);
}
.post-card__tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red);
  background: var(--red-soft); padding: 4px 10px;
  border-radius: 999px; display: inline-block; width: fit-content;
}
.post-card__title {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 700; color: var(--ink); line-height: 1.3;
}
.post-card__excerpt { font-size: 0.875rem; color: var(--body); line-height: 1.6; }

/* ── CLIENTS STRIP (homepage) ── */
.clients-strip {
  padding: 40px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-strip__label {
  text-align: center; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.clients-strip__logos {
  display: flex; align-items: center;
  justify-content: center; gap: 40px; flex-wrap: wrap;
}
.clients-strip__logos img {
  height: 26px; width: auto; opacity: 0.45;
  filter: grayscale(1); transition: opacity .2s, filter .2s;
}
.clients-strip__logos img:hover { opacity: 0.85; filter: grayscale(0); }

/* ── MANIFESTO ── */
.manifesto { background: var(--bg-dark); padding: 64px 0; }
.manifesto__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.manifesto__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 800; color: #fff; line-height: 1.2;
  letter-spacing: -0.02em;
}
.manifesto__title span { color: var(--red); }
.manifesto__body {
  font-size: 1.1rem; line-height: 1.8;
  color: rgba(255,255,255,0.78); font-weight: 400;
}
.manifesto__body strong { color: #fff; font-weight: 600; }

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 40px;
}
.process-step { padding: 0 20px; position: relative; }
.process-step:not(:last-child)::after {
  content: '→'; position: absolute;
  right: -8px; top: 8px;
  font-size: 1.1rem; color: var(--border);
}
.process-step__num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 800; margin-bottom: 14px;
}
.process-step h3 {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; color: var(--ink); margin-bottom: 8px;
}
.process-step p { font-size: 0.875rem; line-height: 1.65; color: var(--body); }

/* ── CTA SECTION ── */
.cta-section { padding: 80px 0; background: var(--bg-dark); }
.cta-section__inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 12px;
}
.cta-section__title span { color: var(--red); }
.cta-section__sub {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  max-width: 480px; line-height: 1.65;
}
.cta-note { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-top: 10px; }
.btn--cta {
  background: var(--red); color: #fff;
  padding: 1rem 2rem; border-radius: 12px;
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; display: inline-flex;
  align-items: center; gap: 8px; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(234,57,87,0.4);
  transition: background .2s, transform .15s;
}
.btn--cta:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer { background: var(--bg-darker); padding: 52px 0 28px; }
.footer__wrap {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px; align-items: start;
}
.footer__brand-name {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 800; color: #fff; margin-bottom: 10px;
}
.footer__brand-name span { color: var(--red); }
.footer__brand p {
  font-size: 0.825rem; color: rgba(255,255,255,0.38);
  line-height: 1.65; max-width: 220px; margin-bottom: 14px;
}
.footer__linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.825rem; font-weight: 600;
  color: rgba(255,255,255,0.38); transition: color .2s;
}
.footer__linkedin:hover { color: var(--red); }
.footer__col-title {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  margin-bottom: 14px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.footer__col-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.52);
  transition: color .2s;
}
.footer__col-links a:hover { color: #fff; }
.footer__col-links a.footer__cta { color: var(--red); font-weight: 600; }
.footer__col-links a.footer__cta:hover { color: #fff; }
.footer__meta--bottom {
  display: flex; justify-content: space-between;
  align-items: center; font-size: 0.8rem;
  color: rgba(255,255,255,0.22);
}

/* ── ARTICLE STYLES ── */
.article { padding: 64px 0 80px; background: var(--bg-soft); }
.article__wrap { max-width: 740px; margin: 0 auto; }
.article__tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  color: var(--red); background: var(--red-soft);
  border: 1px solid var(--red-mid);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 20px;
}
.article__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1; color: var(--ink); margin-bottom: 16px;
}
.article__meta {
  font-size: 13px; color: var(--muted); margin-bottom: 48px;
  padding-bottom: 32px; border-bottom: 1px solid var(--border);
}
.article__body h2 {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); margin: 48px 0 16px;
}
.article__body p {
  font-size: 17px; line-height: 1.75;
  color: var(--body); margin: 0 0 24px;
}
.article__body strong { color: var(--ink); font-weight: 700; }
.article__pullquote {
  margin: 40px 0; padding: 24px 28px;
  border-left: 3px solid var(--red);
  background: var(--red-soft); border-radius: 0 12px 12px 0;
}
.article__pullquote p {
  font-size: 19px !important; font-weight: 600;
  color: var(--ink) !important; line-height: 1.5 !important;
  margin: 0 !important; letter-spacing: -0.01em;
}
.article__cta {
  margin-top: 56px; padding: 32px;
  background: var(--red-soft); border: 1px solid var(--red-mid);
  border-radius: var(--radius-lg); text-align: center;
}
.article__cta h3 {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 10px;
}
.article__cta p { color: var(--body); font-size: 15px; margin-bottom: 20px; line-height: 1.6; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--muted);
  margin-bottom: 32px; transition: color .2s;
}
.back-link:hover { color: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    display: none; position: absolute; top: 64px;
    left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch;
    padding: 16px 24px 24px; gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .nav__menu.is-open { display: flex; }
  .nav__link { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .btn--nav { margin-top: 8px; justify-content: center; }
  .feature-grid,
  .post-grid { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(3,1fr); }
  .manifesto__inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-section__inner { grid-template-columns: 1fr; }
  .footer__wrap { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .logo-wall { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-step::after { display: none; }
  .footer__wrap { grid-template-columns: 1fr; }
}
@media (max-width: 440px) {
  .process-steps { grid-template-columns: 1fr; }
}
