:root {
  --ink: #17322c;
  --muted: #66756f;
  --cream: #f5f2e9;
  --paper: #fffdf8;
  --green: #315f4f;
  --deep: #142f28;
  --gold: #e4b766;
  --line: rgba(23, 50, 44, 0.13);
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.watchcat-page main,
.legal-page {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
.watchcat-page main img,
.legal-page img { display: block; max-width: 100%; }

.watchcat-blog-header,
.watchcat-secondary-nav {
  color: #111827;
}

.hero-stage {
  min-height: 790px;
  color: white;
  background:
    linear-gradient(180deg, rgba(8, 27, 22, .68) 0%, rgba(8, 27, 22, .26) 12%, transparent 27%),
    linear-gradient(90deg, rgba(11, 34, 28, .97) 0%, rgba(15, 43, 35, .86) 38%, rgba(15, 37, 31, .26) 70%, rgba(15, 37, 31, .18) 100%),
    linear-gradient(0deg, rgba(12, 35, 29, .46), transparent 45%),
    url("../img/office-hero-v8.jpg") center / cover no-repeat;
}
.site-header {
  width: min(1180px, calc(100% - 48px));
  height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.hero-header { border-bottom-color: rgba(255,255,255,.2); }
.hero-header nav {
  gap: 34px;
}
.hero-header nav a {
  position: relative;
  padding: 10px 0;
  color: #fff;
  font-weight: 650;
  opacity: .92;
  text-shadow: 0 1px 8px rgba(0,0,0,.42);
}
.hero-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: #f0cf8c;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.hero-header nav a:hover,
.hero-header nav a:focus-visible {
  opacity: 1;
}
.hero-header nav a:focus-visible {
  outline: none;
}
.hero-header nav a:hover::after,
.hero-header nav a:focus-visible::after {
  transform: scaleX(1);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 42px; height: 42px; border-radius: 11px; }
.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { font-size: 17px; letter-spacing: .01em; }
.brand small { margin-top: 5px; opacity: .68; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.watchcat-page main nav,
.legal-page nav { display: flex; align-items: center; gap: 34px; font-size: 14px; color: inherit; }
.watchcat-page main nav a,
.legal-page nav a { opacity: .78; transition: opacity .2s ease; }
.watchcat-page main nav a:hover,
.legal-page nav a:hover { opacity: 1; }

.product-language {
  position: relative;
  color: white;
}
.product-language summary {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  list-style: none;
  text-shadow: none;
}
.product-language summary::-webkit-details-marker { display: none; }
.product-language[open] summary span { transform: rotate(180deg); }
.product-language > div {
  position: absolute;
  z-index: 20;
  top: 44px;
  right: 0;
  width: 128px;
  overflow: hidden;
  border: 1px solid rgba(23,50,44,.12);
  border-radius: 10px;
  background: white;
  box-shadow: 0 14px 34px rgba(8,27,22,.18);
}
.product-language > div a {
  display: block;
  padding: 11px 14px;
  color: var(--ink);
  opacity: 1;
  text-shadow: none;
}
.product-language > div a:hover { background: var(--cream); }
.product-language > div a.is-current { color: var(--green); font-weight: 800; }

.hero {
  width: min(1180px, calc(100% - 48px));
  height: auto;
  min-height: 696px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 72px 0 104px;
}
.hero-copy { width: min(700px, 70%); }
.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 14px;
  font-weight: 720;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 30px; height: 1px; background: currentColor; }
.light { color: #f0c778; }
.hero h1, .section h2, .legal h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 760;
  letter-spacing: -.055em;
}
.hero h1 { font-size: clamp(58px, 6vw, 84px); line-height: 1.06; }
html[lang="en"] .hero-copy { width: min(860px, 74%); }
html[lang="en"] .hero h1 { font-size: clamp(48px, 4vw, 68px); }
.hero h1 > span,
.hero h1 > em { display: block; }
.hero h1 em { color: #f0cf8c; font-style: normal; }
.lead { max-width: 700px; margin: 30px 0 0; color: rgba(255,255,255,.74); font-size: 19px; line-height: 1.8; }
.hero-actions { display: flex; gap: 12px; margin-top: 36px; }
.button { padding: 15px 22px; border-radius: 12px; font-size: 14px; font-weight: 680; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.primary { background: #f2d08c; color: #17322c; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.glass { border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); backdrop-filter: blur(14px); }
.platform { margin-top: 20px; color: rgba(255,255,255,.5); font-size: 12px; }
.hero-proof {
  position: absolute;
  right: 0;
  bottom: 140px;
  width: 360px;
  padding: 16px;
  display: flex;
  gap: 15px;
  align-items: center;
  background: rgba(248, 247, 241, .9);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(4, 18, 14, .26);
  backdrop-filter: blur(18px);
}
.hero-proof img { width: 72px; height: 72px; border-radius: 17px; }
.hero-proof div { min-width: 0; }
.hero-proof p { margin: 0 0 5px; color: var(--green); font-size: 12px; font-weight: 720; }
.hero-proof strong { display: block; font-size: 16px; line-height: 1.35; }
.hero-proof small { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.green-dot { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: #4cbd72; box-shadow: 0 0 0 4px rgba(76,189,114,.14); }

.section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 124px 0; }
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  text-align: center;
}
.section-heading .eyebrow,
.privacy-copy .eyebrow,
.closing .eyebrow {
  justify-content: center;
}
.section-heading .eyebrow::after,
.privacy-copy .eyebrow::after,
.closing .eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}
.section h2 { font-size: clamp(44px, 5vw, 66px); line-height: 1.13; }
.section-heading h2,
.privacy-copy h2,
.closing h2 { white-space: nowrap; }
html[lang="en"] .section-heading h2,
html[lang="en"] .privacy-copy h2,
html[lang="en"] .closing h2 {
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
}
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card {
  min-height: 0;
  padding: 18px 18px 28px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.feature-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
}
.feature-card b { margin: 22px 14px 0; color: #91a49a; font-size: 13px; font-weight: 650; }
.feature-card h3 { margin: 14px 14px 12px; font-size: 26px; letter-spacing: -.02em; }
.feature-card p { max-width: 500px; margin: 0; color: var(--muted); line-height: 1.75; font-size: 15px; }
.feature-card p { margin-right: 14px; margin-left: 14px; }

.modes { padding-top: 60px; }
.mode-list { border-top: 1px solid var(--line); }
.mode-row {
  display: grid;
  grid-template-columns: .7fr .8fr 1.5fr;
  gap: 32px;
  align-items: start;
  padding: 31px 4px;
  border-bottom: 1px solid var(--line);
}
.mode-row > span { color: #83928c; font-size: 13px; }
.mode-row h3 { margin: 0; font-size: 22px; letter-spacing: -.02em; }
.mode-row p { margin: 0; color: var(--muted); line-height: 1.75; }
.mode-note { margin: 22px 0 0; color: var(--green); font-size: 13px; font-weight: 650; }

.privacy-block {
  width: 100%;
  padding: 125px max(24px, calc((100vw - 1180px) / 2));
  background: var(--deep);
  color: white;
  text-align: center;
}
.privacy-copy { max-width: 860px; margin: 0 auto; }
.privacy-copy > p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.67); font-size: 17px; line-height: 1.9; margin: 28px auto; }
.text-link { display: inline-flex; gap: 30px; align-items: center; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.35); font-size: 14px; }
.text-link span { color: var(--gold); font-size: 20px; }
.privacy-facts { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.privacy-facts div { padding: 24px 28px; display: flex; align-items: baseline; justify-content: space-between; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.04); }
.privacy-facts strong { color: var(--gold); font-size: 40px; font-weight: 720; }
.privacy-facts span { color: rgba(255,255,255,.64); font-size: 14px; }

.closing { text-align: center; }
.closing img { width: 70px; margin: 0 auto 30px; border-radius: 18px; }
.closing .eyebrow { justify-content: center; }
.closing > p:last-child { color: var(--muted); margin-top: 24px; }
footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}
footer > p { text-align: center; }
footer > div { text-align: right; }
.footer-brand img { width: 34px; height: 34px; }
.footer-brand strong { font-size: 14px; }

.legal-page { background: var(--paper); min-height: 100vh; }
.legal-header { border-bottom-color: var(--line); }
.legal {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 120px;
}
.legal h1 { font-size: clamp(52px, 8vw, 76px); }
.legal-summary { margin: 28px 0 12px; color: #465a53; font-size: 22px; line-height: 1.7; }
.updated { color: #929d99; font-size: 13px; }
.legal section { padding: 38px 0; border-top: 1px solid var(--line); }
.legal section:first-of-type { margin-top: 58px; }
.legal h2 { margin: 0 0 17px; font-size: 21px; letter-spacing: -.01em; }
.legal section p, .legal li { color: #596c65; font-size: 16px; line-height: 1.9; }
.legal section p { margin: 10px 0; }
.legal ul { margin: 0; padding-left: 22px; }
.legal-footer { width: min(760px, calc(100% - 48px)); grid-template-columns: 1fr 1fr; }
.legal-footer p { text-align: left; }
.legal-footer a { text-align: right; }

@media (max-width: 820px) {
  .site-header { width: min(100% - 32px, 1180px); height: 78px; }
  .watchcat-page main nav,
  .legal-page nav { gap: 18px; }
  .watchcat-page main .hero-header > nav > a { display: none; }
  .product-language > div a { display: block; }
  .hero-stage {
    min-height: 850px;
    background-position: 61% center;
    background-image:
      linear-gradient(180deg, rgba(8,27,22,.58), transparent 25%),
      linear-gradient(90deg, rgba(11,34,28,.97), rgba(15,43,35,.78)),
      url("../img/office-hero-v8.png");
  }
  .hero { width: min(100% - 32px, 1180px); min-height: 770px; padding: 70px 0 180px; align-items: flex-start; }
  .hero-copy { width: 100%; }
  html[lang="en"] .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .lead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .hero-proof { right: 0; left: 0; bottom: 55px; width: 100%; }
  .section { width: min(100% - 32px, 1180px); padding: 90px 0; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2,
  .privacy-copy h2,
  .closing h2 { max-width: 680px; white-space: normal; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .mode-row { grid-template-columns: 1fr; gap: 8px; }
  .privacy-block { width: 100%; padding: 90px 24px; }
  .privacy-facts { grid-template-columns: 1fr; margin-top: 44px; }
  footer { width: min(100% - 32px, 1180px); grid-template-columns: 1fr; gap: 20px; text-align: center; }
  footer > p, footer > div { text-align: center; }
  .footer-brand { justify-self: center; }
  .legal { width: min(100% - 36px, 760px); padding: 75px 0 90px; }
  .legal-summary { font-size: 20px; }
  .legal-footer { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
