@font-face {
  font-family: "Sync Sans";
  src: local("Manrope"), local("Inter"), local("Segoe UI Variable"), local("Segoe UI");
  font-display: swap;
}

:root {
  --ivory: #f7f4ee;
  --ivory-soft: #fcfaf6;
  --white: #ffffff;
  --graphite: #211e19;
  --graphite-soft: #2c2822;
  --muted: #675f52;
  --muted-strong: #554e43;
  --border: #e6dfd1;
  --border-strong: #d4c8b7;
  --terracotta: #c15f3c;
  --terracotta-action: #a84e2f;
  --terracotta-dark: #8d3f27;
  --terracotta-soft: #f7e9df;
  --green: #3d7a5f;
  --green-dark: #2f664d;
  --green-soft: #e8f1eb;
  --blue-soft: #e8edf3;
  --yellow-soft: #f6edcf;
  --shadow: 0 24px 70px rgb(58 43 27 / 11%);
  --shadow-small: 0 12px 32px rgb(58 43 27 / 8%);
  --radius-small: 10px;
  --radius: 16px;
  --radius-large: 26px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--ivory);
  font-family: "Sync Sans", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--graphite);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgb(247 244 238 / 88%);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 28px rgb(62 48 33 / 6%);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--graphite);
  font-size: 1.23rem;
  font-weight: 780;
  letter-spacing: -0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  flex: none;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 27px);
}

.main-nav a:not(.button) {
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 670;
  text-decoration: none;
  transition: color 150ms ease;
}

.main-nav a:not(.button):hover,
.main-nav a:not(.button):focus-visible {
  color: var(--terracotta-action);
}

.header-cta {
  margin-left: 8px;
}

.main-nav .mobile-nav-cta {
  display: none;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  border-radius: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--graphite);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 50px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: var(--terracotta-action);
  border: 1px solid var(--terracotta-action);
  border-radius: var(--radius-small);
  box-shadow: 0 9px 22px rgb(168 78 47 / 20%);
  font-weight: 780;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  box-shadow: 0 13px 28px rgb(141 63 39 / 25%);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgb(168 78 47 / 34%);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.88rem;
}

.button-secondary {
  color: var(--terracotta-dark);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta-action);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section {
  padding: 108px 0;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.centered {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.value-heading h2,
.team-copy h2,
.security-heading h2,
.pricing-copy h2,
.beta-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.058em;
}

.section-heading > p:last-child,
.value-heading > p:last-child,
.team-copy > p,
.security-heading > p:last-child,
.pricing-copy > p:last-child,
.beta-copy > p {
  color: var(--muted);
  font-size: 1.04rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: 70px;
  align-items: end;
}

.split-heading h2 {
  max-width: 760px;
}

.split-heading > p {
  margin: 0 0 6px;
}

/* Hero */

.hero {
  position: relative;
  padding: 64px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgb(193 95 60 / 8%), transparent 28%),
    var(--ivory);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 80px;
  right: -110px;
  width: 420px;
  height: 420px;
  border: 1px solid rgb(193 95 60 / 13%);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-bottom: 34px;
}

.hero-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-copy > .eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--terracotta-soft);
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(3.7rem, 6vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: -0.068em;
}

h1 em {
  color: var(--terracotta-action);
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.hero-points {
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--muted-strong);
  font-size: 0.84rem;
  list-style: none;
}

.hero-points span {
  margin-right: 6px;
  color: var(--green-dark);
  font-weight: 900;
}

.hero-line {
  position: absolute;
  z-index: 1;
  border: 1px solid rgb(193 95 60 / 20%);
  pointer-events: none;
}

.hero-line-one {
  top: -190px;
  left: 39%;
  width: 520px;
  height: 360px;
  border-top: 0;
  border-radius: 0 0 90px 90px;
}

.hero-line-two {
  right: 3%;
  bottom: 120px;
  width: 310px;
  height: 250px;
  border-style: dashed;
  border-radius: 62px;
}

.product-stage {
  position: relative;
  z-index: 3;
  min-width: 0;
  animation: product-enter 650ms ease both;
}

@keyframes product-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-window {
  width: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.window-bar {
  min-height: 54px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fcfaf6;
  border-bottom: 1px solid var(--border);
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
}

.window-source {
  margin-left: 7px;
  padding: 4px 8px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 750;
}

.window-actions {
  display: flex;
  gap: 7px;
}

.window-actions span {
  width: 8px;
  height: 8px;
  background: #dfd5c8;
  border-radius: 50%;
}

.app-layout {
  min-height: 430px;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
}

.app-sidebar {
  padding: 19px 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #faf7f1;
  border-right: 1px solid var(--border);
}

.app-sidebar p {
  margin: 0;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  border-radius: 8px;
  font-size: 0.61rem;
  font-weight: 720;
  white-space: nowrap;
}

.app-sidebar p i {
  width: 13px;
  color: var(--muted);
  font-size: 0.68rem;
  font-style: normal;
  text-align: center;
}

.app-sidebar p.app-nav-active {
  color: var(--graphite);
  background: #eee7dc;
}

.source-pill {
  margin-top: auto;
  padding: 10px;
  display: grid;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.source-pill small {
  color: var(--muted);
  font-size: 0.5rem;
  font-weight: 800;
}

.source-pill strong {
  color: var(--muted-strong);
  font-size: 0.61rem;
}

.source-pill strong span {
  width: 6px;
  height: 6px;
  margin-right: 4px;
  display: inline-block;
  background: var(--green);
  border-radius: 50%;
}

.app-content {
  min-width: 0;
  padding: 22px;
  background: var(--ivory-soft);
}

.app-date {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.app-date div {
  display: grid;
  gap: 3px;
}

.app-date small,
.worklog-heading small {
  color: var(--terracotta-action);
  font-size: 0.53rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.app-date strong {
  font-size: 0.9rem;
}

.app-date > span {
  color: var(--muted);
  font-size: 0.62rem;
}

.stats-grid {
  margin-top: 17px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.stats-grid article {
  min-width: 0;
  padding: 11px;
  display: grid;
  gap: 2px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.stats-grid article.stat-pending {
  background: var(--terracotta-soft);
  border-color: #dfaa94;
}

.stats-grid article.stat-jira {
  background: var(--green-soft);
  border-color: #bfd6c6;
}

.stats-grid small {
  color: var(--muted);
  font-size: 0.54rem;
}

.stats-grid strong {
  font-size: clamp(0.84rem, 1.4vw, 1.15rem);
  line-height: 1.15;
}

.stats-grid span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.5rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.worklog-panel {
  margin-top: 12px;
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 11px;
}

.worklog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.worklog-heading h3 {
  margin: 2px 0 0;
  font-size: 0.8rem;
}

.status-badge {
  padding: 4px 8px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.52rem;
  font-weight: 800;
}

.status-badge i {
  width: 5px;
  height: 5px;
  margin-right: 4px;
  display: inline-block;
  background: var(--green);
  border-radius: 50%;
}

.worklog-table {
  margin-top: 10px;
  border-top: 1px solid #eee8de;
}

.worklog-row {
  min-height: 32px;
  display: grid;
  grid-template-columns: minmax(100px, 1.7fr) minmax(58px, 0.75fr) minmax(52px, 0.55fr) minmax(55px, 0.7fr);
  gap: 8px;
  align-items: center;
  color: var(--muted-strong);
  border-bottom: 1px solid #f0eae1;
  font-size: 0.52rem;
}

.worklog-labels {
  min-height: 27px;
  color: var(--muted);
  font-size: 0.47rem;
}

.worklog-row .done {
  color: var(--green-dark);
}

.worklog-row .pending {
  color: var(--terracotta-dark);
  font-weight: 850;
}

.worklog-footer {
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.worklog-footer > span:first-child {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.worklog-footer small {
  color: var(--muted);
  font-size: 0.5rem;
}

.worklog-footer strong {
  font-size: 0.72rem;
}

.mock-button {
  padding: 7px 10px;
  color: var(--white);
  background: var(--terracotta-action);
  border-radius: 7px;
  font-size: 0.52rem;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  z-index: 5;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-small);
}

.floating-card span:last-child {
  display: grid;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.58rem;
}

.floating-card strong {
  font-size: 0.69rem;
}

.floating-review {
  right: -18px;
  bottom: 28px;
}

.floating-local {
  top: 88px;
  left: -74px;
}

.floating-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 900;
}

.floating-icon.lock {
  background: var(--graphite);
}

.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.proof-strip article {
  padding: 25px 22px;
  display: grid;
  gap: 2px;
  text-align: center;
}

.proof-strip article + article {
  border-left: 1px solid var(--border);
}

.proof-strip strong {
  font-size: 0.84rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Value */

.value-section {
  background: var(--white);
}

.value-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.6fr);
  column-gap: 70px;
  align-items: end;
}

.value-heading .eyebrow {
  grid-column: 1 / -1;
}

.value-heading > p:last-child {
  margin: 0 0 8px;
}

.value-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-strong);
}

.value-grid article {
  min-height: 190px;
  padding: 32px 30px 20px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
}

.value-grid article + article {
  padding-left: 30px;
  border-left: 1px solid var(--border);
}

.value-number {
  color: var(--terracotta-action);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.value-grid h3 {
  margin: -4px 0 9px;
  font-size: 1.25rem;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Flow */

.flow-section {
  background: var(--ivory);
}

.flow-switch {
  width: max-content;
  margin: 0 auto 25px;
  padding: 5px;
  display: flex;
  background: #ebe4d9;
  border-radius: 12px;
}

.flow-switch button {
  min-width: 160px;
  padding: 10px 17px;
  color: var(--muted-strong);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 780;
  cursor: pointer;
}

.flow-switch button.active {
  color: var(--graphite);
  background: var(--white);
  box-shadow: 0 4px 13px rgb(62 48 33 / 8%);
}

.flow-panel {
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
}

.flow-panel article {
  min-width: 0;
}

.step-number {
  color: var(--terracotta-action);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.step-visual {
  width: 58px;
  height: 58px;
  margin: 23px 0;
  display: grid;
  place-items: center;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 15px;
}

.mini-list {
  padding: 14px;
  gap: 6px;
}

.mini-list i {
  width: 100%;
  height: 5px;
  display: block;
  background: #d6ccbd;
  border-radius: 9px;
}

.mini-list i:nth-child(2) {
  width: 72%;
  justify-self: start;
  background: var(--terracotta);
}

.review-visual i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 9px;
  font-style: normal;
  font-weight: 900;
}

.jira-visual {
  grid-template-columns: repeat(2, 16px);
  gap: 4px;
}

.jira-visual i {
  height: 30px;
  background: var(--graphite);
  border-radius: 5px;
  transform: skewY(-14deg);
}

.jira-visual i:last-child {
  background: var(--terracotta);
}

.flow-panel h3 {
  margin: 0 0 9px;
  font-size: 1.08rem;
}

.flow-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.flow-connector {
  display: grid;
  place-items: center;
  color: var(--terracotta-action);
  font-size: 1.2rem;
}

/* Control */

.control-section {
  background: var(--white);
}

.control-shell {
  padding: 64px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 73%), rgb(255 255 255 / 25%)),
    var(--terracotta-soft);
  border: 1px solid #ead3c4;
  border-radius: 32px;
}

.control-shell .section-heading > p:last-child {
  max-width: 680px;
  margin-inline: auto;
}

.comparison-demo {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.comparison-source,
.comparison-gate {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgb(62 48 33 / 6%);
}

.demo-title {
  padding-bottom: 13px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  font-size: 0.76rem;
  font-weight: 800;
}

.comparison-source > p {
  margin: 0;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  border-bottom: 1px solid #efe9df;
  font-size: 0.72rem;
}

.comparison-source > p strong {
  color: var(--graphite);
}

.comparison-source footer {
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.7rem;
}

.comparison-source footer strong {
  color: var(--green-dark);
}

.comparison-result {
  border-color: #bdd4c4;
}

.comparison-result > p {
  padding-block: 18px;
}

.comparison-result .preview-comment {
  display: grid;
  gap: 4px;
}

.comparison-result .preview-comment strong {
  color: var(--muted-strong);
  font-weight: 650;
}

.comparison-gate {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.comparison-gate > strong {
  margin: 12px 0 10px;
}

.comparison-gate p {
  width: 100%;
  margin: 3px 0;
  padding: 7px 8px;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 5px;
  color: var(--muted);
  background: var(--ivory-soft);
  border-radius: 8px;
  font-size: 0.68rem;
  text-align: left;
}

.comparison-gate p span {
  color: var(--green-dark);
  font-weight: 900;
}

.comparison-gate > small {
  margin-top: 13px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 780;
}

.mode-pills {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.mode-pills span {
  padding: 8px 11px;
  color: var(--muted-strong);
  background: rgb(255 255 255 / 72%);
  border: 1px solid rgb(211 183 164 / 68%);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 720;
}

.mode-pills span i {
  width: 6px;
  height: 6px;
  margin-right: 5px;
  display: inline-block;
  background: #a49b90;
  border-radius: 50%;
}

.mode-pills span.active i {
  background: var(--green);
}

/* Team */

.team-section {
  background: var(--ivory);
  overflow: hidden;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 70px;
  align-items: center;
}

.team-copy h2 {
  width: 100%;
  max-width: 590px;
}

.team-copy,
.team-preview,
.security-heading,
.pricing-copy,
.beta-copy {
  min-width: 0;
}

.team-copy > p {
  margin: 25px 0 0;
  max-width: 570px;
}

.check-list {
  margin: 27px 0;
  padding: 0;
  display: grid;
  gap: 11px;
  color: var(--muted-strong);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 29px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.text-link {
  color: var(--terracotta-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover span {
  display: inline-block;
  transform: translateX(4px);
}

.team-preview {
  position: relative;
}

.team-preview::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -90px;
  width: 330px;
  height: 330px;
  background: var(--terracotta-soft);
  border-radius: 50%;
}

.team-window {
  position: relative;
  z-index: 2;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.team-window-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.team-window-head > div:first-child {
  display: grid;
  gap: 6px;
}

.team-window-head strong {
  font-size: 0.95rem;
}

.feature-badge {
  width: max-content;
  padding: 4px 8px;
  color: var(--terracotta-dark);
  background: var(--terracotta-soft);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.view-toggle {
  padding: 4px;
  display: flex;
  background: var(--ivory);
  border-radius: 9px;
}

.view-toggle span {
  padding: 6px 9px;
  color: var(--muted);
  border-radius: 7px;
  font-size: 0.6rem;
  font-weight: 750;
}

.view-toggle span.active {
  color: var(--graphite);
  background: var(--white);
  box-shadow: 0 3px 8px rgb(62 48 33 / 8%);
}

.team-legend {
  margin: 17px 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  color: var(--muted);
  font-size: 0.54rem;
}

.team-legend i {
  width: 7px;
  height: 7px;
  margin-right: 4px;
  display: inline-block;
  border-radius: 2px;
}

.team-legend .office {
  background: var(--terracotta);
}

.team-legend .remote {
  background: var(--green);
}

.team-legend .vacation {
  background: #d5ab34;
}

.team-legend .unavailable {
  background: #8d96a2;
}

.team-table {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.team-row {
  min-width: 570px;
  min-height: 48px;
  display: grid;
  grid-template-columns: 1.25fr repeat(5, 0.8fr);
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.team-row:last-child {
  border-bottom: 0;
}

.team-row > * {
  min-width: 0;
  height: 100%;
  padding: 8px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  font-size: 0.54rem;
  text-align: center;
}

.team-row > *:last-child {
  border-right: 0;
}

.team-row > strong {
  justify-content: flex-start;
  gap: 7px;
  color: var(--graphite);
}

.team-days {
  min-height: 34px;
  color: var(--muted);
  background: var(--ivory-soft);
  font-weight: 800;
}

.team-row span.office {
  color: #8c432b;
  background: var(--terracotta-soft);
}

.team-row span.remote {
  color: var(--green-dark);
  background: var(--green-soft);
}

.team-row span.vacation {
  color: #725810;
  background: var(--yellow-soft);
}

.team-row span.unavailable {
  color: #505965;
  background: var(--blue-soft);
}

.avatar {
  width: 24px;
  height: 24px;
  display: grid;
  flex: none;
  place-items: center;
  color: var(--white);
  border-radius: 8px;
  font-size: 0.45rem;
  font-style: normal;
}

.avatar-a {
  background: var(--terracotta-action);
}

.avatar-b {
  background: var(--green);
}

.avatar-c {
  background: #646f7d;
}

.vacation-callout {
  margin-top: 12px;
  padding: 11px 13px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 10px;
  align-items: center;
  background: var(--yellow-soft);
  border: 1px solid #e5d69d;
  border-radius: 10px;
}

.vacation-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #755b12;
  background: rgb(255 255 255 / 55%);
  border-radius: 9px;
}

.vacation-callout div {
  display: grid;
}

.vacation-callout small {
  color: #806821;
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.vacation-callout strong,
.vacation-callout > span:last-child {
  color: #55440f;
  font-size: 0.64rem;
}

.preview-caption {
  position: relative;
  z-index: 2;
  margin: 9px 4px 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: right;
}

/* Security */

.security-section {
  padding-top: 0;
  background: var(--ivory);
}

.security-shell {
  padding: 68px;
  color: #f7f4ee;
  background:
    radial-gradient(circle at 100% 0, rgb(193 95 60 / 21%), transparent 30%),
    var(--graphite);
  border-radius: 32px;
}

.security-heading {
  max-width: 850px;
}

.security-heading .eyebrow {
  color: #e79878;
}

.security-heading h2 {
  color: var(--white);
}

.security-heading > p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: #c8c0b5;
}

.security-facts {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.security-facts article {
  padding: 20px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 14px;
}

.security-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: #f7f4ee;
  border: 1px solid #776e62;
  border-radius: 9px;
  font-weight: 900;
}

.security-facts strong {
  display: block;
  font-size: 0.88rem;
}

.security-facts p {
  margin: 7px 0 0;
  color: #aea69b;
  font-size: 0.75rem;
}

.data-boundary {
  margin-top: 38px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 92px 1fr;
  gap: 8px;
  background: rgb(255 255 255 / 4%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 22px;
}

.data-boundary article {
  padding: 26px;
  color: var(--graphite);
  background: var(--ivory-soft);
  border-radius: 14px;
}

.data-card-head {
  display: flex;
  gap: 13px;
  align-items: center;
}

.data-icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: none;
  place-items: center;
  color: var(--terracotta-dark);
  background: var(--terracotta-soft);
  border-radius: 12px;
  font-weight: 900;
}

.data-cloud .data-icon {
  color: var(--green-dark);
  background: var(--green-soft);
}

.data-card-head small {
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.data-card-head h3 {
  margin: 2px 0 0;
  font-size: 1.05rem;
}

.data-boundary ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  color: var(--muted-strong);
  font-size: 0.78rem;
  list-style: none;
}

.data-boundary li {
  position: relative;
  padding-left: 20px;
}

.data-boundary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.boundary-divider {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 13px;
  color: #9f968a;
  text-align: center;
}

.boundary-divider span {
  max-width: 58px;
  font-size: 0.58rem;
  font-weight: 760;
  text-transform: uppercase;
}

.boundary-divider i {
  color: #e79878;
  font-size: 1.2rem;
  font-style: normal;
}

.security-details {
  margin-top: 18px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 30px;
  align-items: center;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 13px;
}

.security-details > div {
  display: grid;
  gap: 3px;
}

.security-details strong {
  color: #eee8de;
  font-size: 0.76rem;
}

.security-details span,
.security-details p {
  margin: 0;
  color: #aaa195;
  font-size: 0.68rem;
}

/* Features */

.features-section {
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
}

.feature-card {
  min-height: 268px;
  padding: 32px;
  overflow: hidden;
  background: var(--ivory-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
}

.feature-large {
  grid-row: span 2;
  min-height: 552px;
}

.feature-wide {
  min-height: 220px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.feature-kicker {
  color: var(--terracotta-action);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  max-width: 470px;
  margin: 12px 0 9px;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.feature-card p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
}

.calendar-visual {
  margin-top: 36px;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.calendar-visual span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 760;
  text-align: center;
}

.calendar-visual i {
  aspect-ratio: 1;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.calendar-visual i.filled {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.calendar-visual i.soft {
  background: var(--green-soft);
  border-color: #bfd6c6;
}

.calendar-visual i.vacation {
  background: var(--yellow-soft);
  border-color: #e2d08d;
}

.calendar-stats {
  margin-top: 13px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.calendar-stats span {
  padding: 13px;
  display: grid;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.calendar-stats small {
  color: var(--muted);
  font-size: 0.63rem;
}

.calendar-stats strong {
  font-size: 1.05rem;
}

.bars {
  height: 86px;
  margin-top: 28px;
  display: flex;
  align-items: end;
  gap: 11px;
}

.bars i {
  width: 13%;
  height: 40%;
  background: var(--terracotta-soft);
  border-radius: 7px 7px 2px 2px;
}

.bars i:nth-child(2) {
  height: 68%;
  background: #e5ad97;
}

.bars i:nth-child(3) {
  height: 92%;
  background: var(--terracotta);
}

.bars i:nth-child(4) {
  height: 58%;
  background: #d98261;
}

.bars i:nth-child(5) {
  height: 78%;
  background: var(--green);
}

.daily-lines {
  margin-top: 26px;
  padding: 17px;
  display: grid;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.daily-lines i {
  width: 87%;
  height: 7px;
  background: #dcd3c6;
  border-radius: 5px;
}

.daily-lines i:nth-child(2) {
  width: 68%;
}

.daily-lines i:nth-child(3) {
  width: 78%;
}

.daily-lines i:nth-child(4) {
  width: 49%;
  background: #e5ad97;
}

.log-visual {
  display: grid;
  gap: 9px;
}

.log-visual span {
  padding: 13px;
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 0 9px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 11px;
}

.log-visual i {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  grid-row: span 2;
  background: #958c80;
  border-radius: 50%;
}

.log-visual i.success {
  background: var(--green);
}

.log-visual b {
  font-size: 0.74rem;
}

.log-visual small {
  color: var(--muted);
  font-size: 0.64rem;
}

/* Pricing */

.pricing-section {
  background: var(--ivory);
}

.pricing-card {
  padding: 58px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
}

.pricing-copy > p:last-child {
  max-width: 455px;
}

.price-options {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  align-items: center;
  background: var(--ivory-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-small);
}

.price-options article {
  text-align: center;
}

.price-options article > span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
}

.price-options article > span em {
  margin-left: 4px;
  padding: 3px 6px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.58rem;
  font-style: normal;
}

.price-options article p {
  margin: 6px 0;
  line-height: 1;
}

.price-options article p strong {
  font-size: 3.3rem;
  letter-spacing: -0.06em;
}

.price-options article sup {
  margin-left: 4px;
  font-size: 1rem;
  font-weight: 800;
}

.price-options article p small {
  color: var(--muted);
  font-size: 0.78rem;
}

.price-options article > small {
  color: var(--muted);
  font-size: 0.65rem;
}

.price-divider {
  height: 95px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--border);
}

.price-divider span {
  width: 25px;
  margin-left: -25px;
  color: var(--muted);
  background: var(--ivory-soft);
  font-size: 0.68rem;
  text-align: center;
}

.price-options > .button {
  grid-column: 1 / -1;
  margin-top: 24px;
}

.price-options > p {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

/* FAQ */

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 80px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  background: var(--ivory-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.faq-list summary {
  min-height: 60px;
  padding: 16px 52px 16px 19px;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 740;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 19px;
  color: var(--terracotta-action);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 19px 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Beta */

.beta-section {
  background: var(--ivory);
}

.beta-card {
  padding: 64px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
}

.beta-copy > img {
  margin-bottom: 24px;
}

.beta-copy h2 {
  max-width: 490px;
}

.beta-copy > p {
  margin-top: 24px;
}

.beta-copy ul {
  margin: 27px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  list-style: none;
}

.beta-copy li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green-dark);
  font-weight: 900;
}

.beta-form {
  padding: 30px;
  display: grid;
  gap: 20px;
  background: var(--ivory-soft);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-small);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.beta-form label {
  color: var(--graphite);
  font-size: 0.82rem;
  font-weight: 760;
}

.optional {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 560;
}

.beta-form input[type="text"],
.beta-form input[type="email"],
.beta-form textarea,
.beta-form select {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  font-weight: 520;
}

.beta-form textarea {
  min-height: 96px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 9px;
  align-items: start;
  color: var(--muted) !important;
  font-size: 0.72rem !important;
  font-weight: 520 !important;
  line-height: 1.5;
}

.consent input {
  margin-top: 3px;
  accent-color: var(--terracotta-action);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

/* Footer and thanks */

.site-footer {
  color: #ddd5ca;
  background: var(--graphite);
}

.footer-main {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-main .brand {
  color: var(--white);
}

.footer-main > p {
  margin: 0;
  color: #b7aea2;
}

.footer-main nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
}

.footer-main nav a {
  color: #ddd5ca;
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-main nav a:hover {
  color: var(--white);
}

.footer-legal {
  min-height: 80px;
  padding-block: 18px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: center;
  color: #9f968a;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 0.68rem;
}

.footer-legal p {
  margin: 0;
}

.thanks-page {
  min-height: 100vh;
  padding: 40px 20px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgb(193 95 60 / 10%), transparent 30%),
    var(--ivory);
}

.thanks-card {
  width: min(100%, 620px);
  padding: clamp(32px, 7vw, 64px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-card img {
  margin: 0 auto 24px;
}

.thanks-card h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4.2rem);
}

.thanks-card > p:not(.eyebrow) {
  margin: 22px auto 30px;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 1120px) {
  .header-inner {
    gap: 15px;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a:not(.button) {
    font-size: 0.82rem;
  }

  .header-cta {
    margin-left: 0;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 60px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
    padding-bottom: 0;
  }

  .product-stage {
    width: min(100%, 830px);
    margin-inline: auto;
  }

  .floating-local {
    left: -12px;
  }

  .proof-strip {
    margin-top: 0;
  }

  .team-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .team-copy {
    max-width: 760px;
  }

  .team-preview {
    width: min(100%, 820px);
    max-width: 100%;
  }

  .security-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card,
  .beta-card {
    grid-template-columns: 1fr;
  }

  .pricing-copy > p:last-child {
    max-width: 650px;
  }
}

@media (max-width: 940px) {
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto;
    max-height: calc(100dvh - 76px);
    padding: 18px 20px 24px;
    display: none;
    overflow-y: auto;
    align-items: stretch;
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-small);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a:not(.button) {
    min-height: 45px;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    font-size: 0.94rem;
  }

  .main-nav .mobile-nav-cta {
    margin-top: 9px;
    display: inline-flex;
  }

  .split-heading,
  .value-heading,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-heading .eyebrow {
    grid-column: auto;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-grid article,
  .value-grid article + article {
    min-height: auto;
    padding: 27px 0;
    border-left: 0;
    border-bottom: 1px solid var(--border);
  }

  .flow-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .flow-connector {
    min-height: 26px;
  }

  .flow-connector span {
    transform: rotate(90deg);
  }

  .comparison-demo {
    grid-template-columns: 1fr;
  }

  .comparison-gate {
    max-width: 440px;
    width: 100%;
    margin-inline: auto;
  }

  .security-shell {
    padding: 52px 38px;
  }

  .data-boundary {
    grid-template-columns: 1fr;
  }

  .boundary-divider {
    min-height: 58px;
    grid-template-columns: auto auto;
  }

  .boundary-divider span {
    max-width: none;
  }

  .boundary-divider i {
    transform: rotate(90deg);
  }

  .security-details {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-large {
    min-height: auto;
  }

  .feature-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .value-heading h2,
  .team-copy h2,
  .security-heading h2,
  .pricing-copy h2,
  .beta-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid {
    gap: 40px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .product-window {
    border-radius: 16px;
  }

  .window-source {
    display: none;
  }

  .app-layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

  .app-content {
    padding: 15px;
  }

  .app-date strong {
    font-size: 0.78rem;
  }

  .stats-grid article {
    padding: 9px 7px;
  }

  .stats-grid strong {
    font-size: 0.78rem;
  }

  .stats-grid span {
    display: none;
  }

  .worklog-row {
    grid-template-columns: 1.3fr 0.65fr 0.65fr;
    font-size: 0.5rem;
  }

  .worklog-row > :nth-child(2) {
    display: none;
  }

  .worklog-row:nth-child(3) {
    display: none;
  }

  .floating-card {
    display: none;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip article {
    padding: 19px 10px;
  }

  .proof-strip article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .proof-strip article:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .value-grid {
    margin-top: 35px;
  }

  .flow-switch {
    width: 100%;
  }

  .flow-switch button {
    min-width: 0;
    flex: 1;
  }

  .flow-panel {
    padding: 26px;
  }

  .control-shell {
    width: 100%;
    padding: 48px 22px;
    border-radius: 0;
  }

  .control-section > .shell {
    width: 100%;
  }

  .comparison-source,
  .comparison-gate {
    padding: 18px;
  }

  .team-window {
    padding: 15px;
  }

  .team-window-head {
    align-items: start;
  }

  .team-window-head strong {
    font-size: 0.77rem;
  }

  .view-toggle {
    display: grid;
  }

  .team-table {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .preview-caption {
    font-size: 0.68rem;
  }

  .security-section {
    background: var(--graphite);
  }

  .security-section > .shell {
    width: 100%;
  }

  .security-shell {
    padding: 58px 22px;
    border-radius: 0;
  }

  .security-facts {
    grid-template-columns: 1fr;
  }

  .data-boundary {
    padding: 9px;
  }

  .data-boundary article {
    padding: 22px;
  }

  .feature-card {
    padding: 25px;
  }

  .calendar-visual {
    padding: 14px;
    gap: 7px;
  }

  .pricing-card,
  .beta-card {
    padding: 36px 24px;
  }

  .price-options {
    padding: 22px 15px;
    grid-template-columns: 1fr;
  }

  .price-divider {
    width: 100%;
    height: 35px;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .price-divider span {
    margin: -25px 0 0;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    padding-block: 35px;
    display: grid;
  }

  .footer-main nav {
    margin-left: 0;
    display: grid;
    gap: 12px;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip article + article {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .app-date > span {
    display: none;
  }

  .worklog-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .mock-button {
    text-align: center;
  }

  .mode-pills {
    display: grid;
  }

  .mode-pills span {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Invite-only account activation */

[hidden] {
  display: none !important;
}

.activation-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 9% 12%, rgb(193 95 60 / 10%), transparent 32rem),
    radial-gradient(circle at 92% 86%, rgb(61 122 95 / 9%), transparent 28rem),
    var(--ivory);
}

.activation-shell {
  width: min(calc(100% - 40px), 1080px);
  margin-inline: auto;
}

.activation-header {
  border-bottom: 1px solid rgb(212 200 183 / 72%);
  background: rgb(247 244 238 / 86%);
  backdrop-filter: blur(16px);
}

.activation-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.activation-private-badge {
  padding: 6px 11px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgb(61 122 95 / 18%);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.activation-main {
  flex: 1;
  display: grid;
  align-items: center;
  padding: clamp(42px, 7vw, 86px) 0;
}

.activation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.activation-card {
  min-height: 570px;
  padding: clamp(28px, 5vw, 54px);
  background: rgb(255 255 255 / 92%);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.activation-card > h1 {
  margin: 0;
  font-size: clamp(2.15rem, 6vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.activation-intro {
  max-width: 38rem;
  margin: 20px 0 32px;
  color: var(--muted);
  font-size: 1.04rem;
}

.activation-state {
  min-height: 225px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  background: var(--ivory-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.activation-state h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.activation-state p {
  margin: 0;
  color: var(--muted);
}

.activation-spinner {
  width: 25px;
  height: 25px;
  flex: none;
  margin-top: 2px;
  border: 3px solid var(--terracotta-soft);
  border-top-color: var(--terracotta-action);
  border-radius: 50%;
  animation: activation-spin 850ms linear infinite;
}

@keyframes activation-spin {
  to { transform: rotate(360deg); }
}

.activation-form {
  display: grid;
  gap: 21px;
}

.activation-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  padding: 14px 16px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgb(61 122 95 / 18%);
  border-radius: var(--radius-small);
}

.activation-account > div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.activation-account button {
  flex: none;
  padding: 5px 0 5px 14px;
  color: var(--green-dark);
  background: transparent;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 760;
}

.activation-account-label {
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.activation-account strong {
  color: var(--graphite);
  font-size: 0.96rem;
  overflow-wrap: anywhere;
}

.activation-field {
  display: grid;
  gap: 7px;
}

.activation-field label {
  font-weight: 780;
}

.activation-field input {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-small);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.activation-field input:hover {
  border-color: var(--muted);
}

.activation-field input:focus {
  border-color: var(--terracotta-action);
  box-shadow: 0 0 0 4px rgb(168 78 47 / 11%);
}

.activation-field-help,
.activation-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.activation-requirements {
  margin: -4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.activation-requirements li::before {
  content: "○";
  margin-right: 7px;
  color: var(--border-strong);
}

.activation-requirements li.is-valid {
  color: var(--green-dark);
}

.activation-requirements li.is-valid::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.activation-error {
  margin: -6px 0 0;
  padding: 11px 13px;
  color: #7f2f22;
  background: #fae9e5;
  border-radius: var(--radius-small);
  font-size: 0.86rem;
}

.activation-submit {
  width: 100%;
}

.button:disabled {
  color: #8a8175;
  background: #e4ded4;
  border-color: #e4ded4;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.activation-terminal[data-state="expired"],
.activation-terminal[data-state="revoked"],
.activation-terminal[data-state="invalid"] {
  background: #fcf3ef;
  border-color: #eed8cf;
}

.activation-success {
  background: var(--green-soft);
  border-color: rgb(61 122 95 / 22%);
}

.activation-state-icon {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--terracotta-action);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 900;
}

.activation-success .activation-state-icon,
.activation-terminal[data-state="used"] .activation-state-icon {
  background: var(--green);
}

.activation-state-kicker {
  margin: 0 0 6px !important;
  color: var(--terracotta-action) !important;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activation-success .activation-state-kicker,
.activation-terminal[data-state="used"] .activation-state-kicker {
  color: var(--green-dark) !important;
}

.activation-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.activation-open-instructions {
  margin-top: 18px !important;
  padding: 13px 15px;
  color: var(--graphite-soft) !important;
  background: rgb(255 255 255 / 68%);
  border-radius: var(--radius-small);
}

.activation-download-note {
  margin-top: 14px !important;
  color: var(--muted) !important;
  font-size: 0.8rem;
}

.activation-actions .button[aria-disabled="true"] {
  color: #8a8175;
  background: #e4ded4;
  border-color: #e4ded4;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.activation-noscript {
  margin-top: 22px;
  padding: 14px;
  color: #7f2f22;
  background: #fae9e5;
  border-radius: var(--radius-small);
}

.activation-assurance {
  padding: 12px 0;
}

.activation-assurance-label {
  margin: 0 0 10px;
  color: var(--terracotta-action);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.activation-assurance h2 {
  margin: 0;
  max-width: 23rem;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.activation-assurance ol {
  margin: 30px 0;
  padding: 0;
  display: grid;
  gap: 22px;
  list-style: none;
}

.activation-assurance li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 13px;
}

.activation-assurance li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--terracotta-dark);
  background: var(--terracotta-soft);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 850;
}

.activation-assurance strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.96rem;
}

.activation-assurance li p,
.activation-assurance-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.activation-assurance-note {
  padding: 16px;
  border-left: 3px solid var(--terracotta);
  background: rgb(255 255 255 / 55%);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.activation-footer {
  padding: 20px 0;
  color: var(--muted);
  border-top: 1px solid rgb(212 200 183 / 72%);
  font-size: 0.82rem;
}

.activation-footer .activation-shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.activation-footer a {
  color: var(--terracotta-dark);
  font-weight: 750;
}

@media (max-width: 820px) {
  .activation-layout {
    grid-template-columns: 1fr;
  }

  .activation-card {
    min-height: auto;
  }

  .activation-assurance {
    max-width: 38rem;
  }
}

@media (max-width: 520px) {
  .activation-shell {
    width: min(calc(100% - 24px), 1080px);
  }

  .activation-private-badge {
    font-size: 0.66rem;
  }

  .activation-main {
    padding: 26px 0 42px;
  }

  .activation-card {
    padding: 25px 20px;
    border-radius: 20px;
  }

  .activation-card > h1 {
    font-size: 2.4rem;
  }

  .activation-state {
    padding: 20px 17px;
  }

  .activation-account {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .activation-account button {
    padding-left: 0;
  }

  .activation-actions,
  .activation-actions .button {
    width: 100%;
  }

  .activation-footer .activation-shell {
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .activation-spinner {
    animation-duration: 1.8s;
  }
}
